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 vue (au cours des 30 derniers jours)
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)

Réponses (1)

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

Catégories

En savoir plus sur Workspace Variables and MAT-Files dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by