| DSP Blockset | Search  Help Desk |
| Standard Deviation | See Also |
Find the standard deviation of an input or sequence of inputs.
Library
Statistics, in Math FunctionsDescription
The Standard Deviation block computes the standard deviation of the input vector, or tracks the standard deviation of a sequence of inputs over a period of time. The Running standard deviation parameter allows you to select between basic operation and running operation, which are described below.Basic Operation
When the Running standard deviation check box is not selected, the block computes the standard deviation of the input vector at each sample time.y = std(u(:)) % equivalent MATLAB codeThis implements the mathematical formula
0 for a scalar input, and treats a matrix input as a vector, u(:)
Running Operation
When the Running standard deviation check box is selected, the block tracks the standard deviation of a sequence of inputs over time. You can choose frame-based or sample-based operation by selecting (or deselecting, respectively) the Frame-based check box. Sample-Based Operation. When the Frame-based check box is not selected (default), the block assumes that the input at theIn port is a 1-by-N sample vector or M-by-N sample matrix. Each of the N vector elements (or M*N matrix elements) is treated as an independent channel, and the block tracks the standard deviation of each of the channels over time.
The block resets the running standard deviation when the scalar input at the optional Rst port is nonzero. The output is the same size as the input, and contains the standard deviation for each input channel since the last reset.

If you do not need to reset the running standard deviation during the simulation, you can delete the Rst port from the block icon by deselecting the Reset port check box.
In port is an M-by-N frame matrix. Each of the N frames in the matrix contains M sequential time samples from an independent signal. The Number of channels parameter specifies the number of independent signals, N, in the matrix.
The block tracks the standard deviation of each of the N independent channels over time, and resets the running standard deviation when the input at the Rst port is nonzero. The output is a sample vector of length N which contains the standard deviation for each input channel since the last reset.

Note
If you expect to generate code for the Standard Deviation block's running mode using the Real-Time Workshop, you should ensure that inputs are contiguous in memory. See the Contiguous Copy block for more information.
Dialog Box

Rst input port.See Also
Meanstd (MATLAB)