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

카테고리

도움말 센터File Exchange에서 2-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