Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Showing error Matrix dimensions must agree

1 回表示 (過去 30 日間)
Mihir Kaswan
Mihir Kaswan 2019 年 9 月 21 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
r=[0 : 100 :100];
theta =[0 : 2*pi :100];
z=2*(r-4*sin(theta)./r);
Matrix dimensions must agree.

回答 (2 件)

madhan ravi
madhan ravi 2019 年 9 月 21 日
theta =0:2*pi:100;
r=linspace(0,100,numel(theta)); % theta and r should have same length/ or either one be a scalar
z=2*(r-4*sin(theta)./r);
doc linspace
doc numel

the cyclist
the cyclist 2019 年 9 月 21 日
The variable r has just two elements: [0 100].
theta has 16 elements: [0 6.2832 12.5664 18.8496 ...]
What do you expect to happen when you try to divide a vector with 16 elements by one with 2 elements?

Community Treasure Hunt

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

Start Hunting!

Translated by