| DSP Blockset | Search  Help Desk |
| Mean | See Also |
Find the mean value of an input or sequence of inputs.
Library
Statistics, in Math FunctionsDescription
The Mean block computes the mean of the input vector, or tracks the mean of a sequence of inputs over a period of time. The Running mean parameter allows you to select between basic operation and running operation, which are both described below.Basic Operation
When the Running mean check box is not selected, the block computes the mean value of the input vector at each sample time.y = mean(u(:)) % equivalent MATLAB codeA matrix input,
u, is treated as a vector, u(:).
Running Operation
When the Running mean check box is selected, the block tracks the mean of a sequence of inputs over time. You can choose frame-based or sample-based operation by selecting or deselecting 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 mean of each of the channels over time.
The block resets the running mean when the scalar input at the optional Rst port is nonzero. The output is the same size as the input, and contains the mean for each input channel since the last reset.

If you do not need to reset the running mean 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 mean of each of the N independent channels over time, and resets the running mean when the input at the Rst port is nonzero. The output is a sample vector of length N which contains the mean for each input channel since the last reset.

Note
If you expect to generate code for the Mean 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
Maximummean (MATLAB)