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 (최근 30일)
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개)

David Hill
David Hill 2022년 1월 28일
newArray=x.*y+z*y+x.^2;%assuming you wanted element-element operations

카테고리

Help CenterFile Exchange에서 Workspace Variables and MAT-Files에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by