Given two vectors x and y, compute their element-wise product z. Thus, if x = [1 3 5] and y = [0.5 -1 2], then

z = [1*0.5 3*(-1) 5*2] = [0.5 -3 10]

Solution Stats

225 Solutions

143 Solvers

Last Solution submitted on Feb 18, 2026

Last 200 Solutions

Solution Comments

Show comments
Loading...