Owning Class: plots
Requires: MathScript RT Module
stripplot(x)
stripplot(x, n)
stripplot(x, t, f)
stripplot(x, t, f, s)
Legacy Name: strips
Generates a plot of horizontal strips.
| Name | Description |
|---|---|
| x | Specifies the data sequence you want to plot. If x is a matrix, stripplot plots each column of x. |
| n | Specifies the amount of data you want to plot in each strip. The default is 250. |
| t | Specifies the time duration over which you want to plot the data in each strip. |
| f | Specifies the sampling frequency. |
| s | Specifies the scale for the y-axis. |
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.
x = rand(400, 2);
t = 0.15;
f = 1000;
s = 0.5;
stripplot(x, t, f, s);