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!