I need a idea to plot in 3-D
Show older comments
I need a example, i can't plot my centripetal equation in 3-D
the equation is
F = m*(v^2/R)
Answers (1)
Walter Roberson
on 7 Jun 2019
%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 Comment
Ian Samuelsson
on 7 Jun 2019
Categories
Find more on Vector Fields in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!