= MATLAB fplot3 = The '''`fplot3`''' function creates a 3D graphic of a parametric curve. <> ---- == Usage == The `fplot3` function is used to render parametric curves. Consider a curve to be defined like ''r(t) = [x(t) y(t) z(t)]''. The first three arguments passed to `fplot3` should be the [[MATLAB/DataTypes#Function_Handle|function handles]] or [[MATLAB/DataTypes#Symbolic_Variable|symbolic expressions]] corresponding to ''x(t)'', ''y(t)'', and ''z(t)''. The fourth argument is the range of the parameter to render. {{{ syms t; x(t) = cos(t); y(t) = -sin(t); z(t) = t^2; fplot3(x(t), y(t), z(t), [0,10]); }}} See also [[MATLAB/FiguresAndRelatedCommands|figures and related commands]]. ---- CategoryRicottone