Too many output arguments.
이전 댓글 표시
Hi, I am new to matlab and I need help.
Im tring to scale my x vectors by 2 and y vectors by 4.
both x vector and y vecotr has dimension of 1x1000.
the code is below
[c,d]= [2 0;0 4]*[x;y];
when I run the code, I get an error of too many outputs.
Thank you in advance
답변 (2개)
Walter Roberson
2019년 10월 3일
0 개 추천
You cannot do that in MATLAB. The mtimes operator (the formal name for the * operator) only creates a single output argument. You will have to assign the output to a single variable and break apart that single variable into the part representing the new x and the part representing the new y.
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!