next up previous contents
Next: VAR Variance Function Up: Elementary Functions Previous: SUM Sum Function   Contents

Subsections

MEAN Mean Function

Usage

Computes the mean of an array along a given dimension. The general syntax for its use is

  y = mean(x,d)

where x is an n-dimensions array of numerical type. The output is of the same numerical type as the input. The argument d is optional, and denotes the dimension along which to take the mean. The output y is the same size as x, except that it is singular along the mean direction. So, for example, if x is a 3 x 3 x 4 array, and we compute the mean along dimension d=2, then the output is of size 3 x 1 x 4.

Function Internals

The output is computed via

$\displaystyle y(m_1,\ldots,m_{d-1},1,m_{d+1},\ldots,m_{p}) = \frac{1}{N}
\sum_{k=1}^{N} x(m_1,\ldots,m_{d-1},k,m_{d+1},\ldots,m_{p})
$

If d is omitted, then the mean is taken along the first non-singleton dimension of x.

Example

The following piece of code demonstrates various uses of the mean function

--> A = [5,1,3;3,2,1;0,3,1]
A = 
  <int32>  - size: [3 3]
 
Columns 1 to 3
             5              1              3  
             3              2              1  
             0              3              1

We start by calling mean without a dimension argument, in which case it defaults to the first nonsingular dimension (in this case, along the columns or d = 1).

--> mean(A)
ans = 
  <double>  - size: [1 3]
 
Columns 1 to 2
    2.666666666666667         2.000000000000000      
 
Columns 3 to 3
    1.666666666666667

Next, we take the mean along the rows.

--> mean(A,2)
ans = 
  <double>  - size: [3 1]
 
Columns 1 to 1
    3.000000000000000      
    2.000000000000000      
    1.333333333333333


next up previous contents
Next: VAR Variance Function Up: Elementary Functions Previous: SUM Sum Function   Contents
Samit K. Basu 2005-03-16