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 comentarios

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

Iniciar sesión para comentar.

Respuestas (1)

Walter Roberson
Walter Roberson el 7 de Jun. de 2019

0 votos

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

Categorías

Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 5 de Jun. de 2019

Comentada:

el 7 de Jun. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by