Info

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

I need to 3d plot the code but there is an error can I get help with fixing the error

1 回表示 (過去 30 日間)
mohsen
mohsen 2016 年 9 月 7 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
F = [-40:20:40];
x = 0.1:0.8;
y = 0.1:0.4;
sigma_p = @(x,y) F/(.8*x*y);
sigma_mx = @(x,y) (F*y)/(1/12*(x)*(y)^3);
sigma_my = @(x,y) (F*x)/(1/12*(y)*(x)^3);
sigma_net = @(x,y) sigma_p +sigma_mx + sigma_my
figure
plot3(x,y,sigma_net)

回答 (1 件)

Walter Roberson
Walter Roberson 2016 年 9 月 7 日
sigma_net = @(x,y) sigma_p(x,y) + sigma_mx(x,y) + sigma_my(x,y);
plot3(x, y, sigma_net(x,y))

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by