Answers for "element wise matrix multiplication python"

1

python element wise multiplication list

# element-wise multiplication of x & y
>>>x = [1,2,3,4]
>>>y = [2,3,4,5]
>>>[a*b for a,b in zip(x,y)]
[2, 6, 12, 20]
Posted by: Guest on June-05-2020

Code answers related to "element wise matrix multiplication python"

Python Answers by Framework

Browse Popular Code Answers by Language