Previous Up Next

5.44.5  Term by term product of two lists: .*

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

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

Output:

[4,6,15]

Previous Up Next