MATLAB fplot3

The fplot3 function creates a 3D graph of a parametric curve.


Usage

syms t;

x(t) = cos(t);
y(t) = -sin(t);
z(t) = t^2;

fplot3(x(t), y(t), z(t), [-2,2]);

See also figures and related commands.


CategoryRicottone