The variables X and Y are vectors and Z is scalar. How do I correct the following command line to work in MATLAB : X*Y + Y*Z + X^2 (using comment or disp function)

1 Ansicht (letzte 30 Tage)
The variables X and Y are vectors and Z is scalar. How do I correct the following command line to work in MATLAB : X*Y + Y*Z + X^2 (using comment or disp function)

Antworten (1)

David Hill
David Hill am 28 Jan. 2022
newArray=x.*y+z*y+x.^2;%assuming you wanted element-element operations

Kategorien

Mehr zu Workspace Variables and MAT-Files finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by