Previous Up Next

6.42.5  Term by term product of two lists: .*

The infixed operator .* returns the term by term product of two lists of the same size.


Example.
Input:

[1,2,3] .* [4,3,5]

Output:


4,6,15

Previous Up Next