mean ( table )
Purpose: Returns a table with each column of each array holding
the average of each column:
mean = (1/n)(x1 + x2 + ... + xn), the xi's are the data
values in each column, and n is the number of data
values in each column. The new table has labels to
indicate columns now contain the mean. Used by: Plugin
Uses: AnalysisPlugins, Numeric, stats, Table
Input: table : Table
Output: mean : Table
Preconditions: None
Postconditions: None
SRS Refs: 3.2.1.3b
Author: rihoward
Date: 25/7/02
|