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)

2 件のコメント

TADA
TADA 2019 年 6 月 5 日
What have you tried that didn't work?
Ian Samuelsson
Ian Samuelsson 2019 年 6 月 6 日
using vectors like (X,Y,Z) is easy to plot, but i can't do using anothers words

サインインしてコメントする。

回答 (1 件)

Walter Roberson
Walter Roberson 2019 年 6 月 7 日

0 投票

%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');

1 件のコメント

Ian Samuelsson
Ian Samuelsson 2019 年 6 月 7 日
is exactily that, thank you so mutch !!

サインインしてコメントする。

カテゴリ

ヘルプ センター および File Exchange2-D and 3-D Plots についてさらに検索

タグ

質問済み:

2019 年 6 月 5 日

コメント済み:

2019 年 6 月 7 日

Community Treasure Hunt

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

Start Hunting!

Translated by