![]() | Download Help (Windows Only) |
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. |
The following table lists the support characteristics of this function.
Supported in the LabVIEW Run-Time Engine | No (always ignored) |
Supported on RT targets | No |
x = rand(400, 2);
t = 0.15;
f = 1000;
s = 0.5;
stripplot(x, t, f, s);
Helpful
Not Helpful