Means: Difference between revisions

From Eigenvector Research Documentation Wiki
Jump to navigation Jump to search
imported>Jeremy
(Importing text file)
 
imported>Donal
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
===Purpose===
===Purpose===
Calculates the algebraic, harmonic, and geometric mean of a vector.
 
Calculates the arithmetic, harmonic, and geometric mean of a vector.
 
===Synopsis===
===Synopsis===
:vals = means(x)
:vals = means(x)
INPUTS:
 
* x = matrix (column vector) in which the sample data is stored.
====Inputs====
OUTPUTS:
 
* '''x''' = matrix (column vector) in which the sample data is stored.
 
====Outputs====
 
The return value is a structure with fields:
The return value is a structure with fields:
* amean =  arithmetic mean.
 
* na = number of obs used in amean calculation.
* '''amean''' =  arithmetic mean.
* hmean = harmonic mean.
 
* nh =  number of obs used in hmean calculation.
* '''na''' = number of obs used in amean calculation.
* gmean = geometric mean.
 
* ng = number of obs used in gmean calculation.
* '''hmean''' = harmonic mean.
 
* '''nh''' =  number of obs used in hmean calculation.
 
* '''gmean''' = geometric mean.
 
* '''ng''' = number of obs used in gmean calculation.
 
===Examples===
===Examples===
mns = means(x);
mns = means(x);
===See Also===
===See Also===
[[summary]]
[[summary]]

Latest revision as of 15:56, 5 September 2012

Purpose

Calculates the arithmetic, harmonic, and geometric mean of a vector.

Synopsis

vals = means(x)

Inputs

  • x = matrix (column vector) in which the sample data is stored.

Outputs

The return value is a structure with fields:

  • amean = arithmetic mean.
  • na = number of obs used in amean calculation.
  • hmean = harmonic mean.
  • nh = number of obs used in hmean calculation.
  • gmean = geometric mean.
  • ng = number of obs used in gmean calculation.

Examples

mns = means(x);

See Also

summary