Owning Class: plots
Requires: MathScript RT Module
plotf_3d(f)
plotf_3d(f, r)
Legacy Name: ezplot3
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.
plotf_3d('cos(t)', 'sin(t)', 't', [-2*pi, 4*pi])
plotf_3d('x^2', 'x^3-x', 'x^3+x^2', [-2*pi, 4*pi])