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
Solution Comments
Show comments
Loading...
Problem Recent Solvers143
Suggested Problems
-
691 Solvers
-
424 Solvers
-
287 Solvers
-
487 Solvers
-
Write a code that will follow the equation y = x * (x + x) * x.
358 Solvers
More from this Author52
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!