Plotting a Parametric Curve with a Double

I am trying to plot the parametric equation (t, -4, t^2 + 17), but am running into difficulties. I have been trying
fplot3(t, -4, t.^2+17)
But am getting the following error: Undefined function 'fplot3' for input arguments of type 'double'.
Any help is greatly appreciated!

Respuestas (1)

Star Strider
Star Strider el 8 de En. de 2018
I would just use plot3 with a slight variation on your posted code:
plot3(t, -4*ones(size(t)), t.^2+17)
grid on

Categorías

Más información sobre Line Plots en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 8 de En. de 2018

Respondida:

el 8 de En. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by