matrix dimension must agree
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
I have been facing issues to get this equation to work out.

a = (5:0.1:20);
b = (15:0.2:40);
y = (30:0.5:40);
P = 1 + (cos(a/5)).*(sin(b/5))-((y.^2)/(a.*(b.^3)));
0 件のコメント
回答 (1 件)
madhan ravi
2020 年 6 月 3 日
a = linspace(5,20);
b = linspace(15,40);
y = linspace(30,40);
P = 1 + (cos(a/5)).*(sin(b/5))-((y.^2)./(a.*(b.^3)));
0 件のコメント
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!