I need a idea to plot in 3-D
古いコメントを表示
I need a example, i can't plot my centripetal equation in 3-D
the equation is
F = m*(v^2/R)
回答 (1 件)
Walter Roberson
2019 年 6 月 7 日
%Example:
xv = linspace(-2, 2);
yv = linspace(1/10, 9/10);
[X, Y] = ndgrid(xv, yv);
Z = (X.^2) .^ Y + X + Y;
surf(X, Y, Z, 'edgecolor', 'none');
xlabel('x');
ylabel('y');
zlabel('z');
カテゴリ
ヘルプ センター および File Exchange で 2-D and 3-D Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!