Member of the plots class.
ezplot3(f)
ezplot3(f, r)
Generates a 3D plot of a curve in space. The curve consists of three functions that all share the same independent variable.
| Name | Description |
| f | Specifies three functions you want to plot. f consists of three strings separated by commas. Each string represents a valid expression. All three functions (x(t), y(t), z(t)) share the same independent variable t. |
| r | Specifies the t-region of the plot. r is a two-element real vector [tmin, tmax]. The default is [0, 2*pi]. |
This function is not supported in the LabVIEW Run-Time Engine. This function can remain in your scripts when you build a stand-alone application or shared library, but the LabVIEW Run-Time Engine does not execute this function.
ezplot3('cos(t)', 'sin(t)', 't', [-2*pi, 4*pi])
ezplot3('x^2', 'x^3-x', 'x^3+x^2', [-2*pi, 4*pi])