Info
この質問は閉じられています。 編集または回答するには再度開いてください。
How do I plot the following function? (I don't have syms function either)
1 回表示 (過去 30 日間)
古いコメントを表示
回答 (1 件)
Carlos Guerrero García
2022 年 12 月 10 日
I recommend the usage of the commando called "plot3"
r= ... % range for r
ux =0.*r % ux must be a vector
uy = -0.125.*r+1.125./r
uz = ... % I don't know what is written before the 1.25 [1/ ???? (1.25r^2+... ]
plot3(ux,uy,uz)
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!