cdf ( table )
Purpose: Returns a table with the cumulative frequency
histogram of the cumulative frequency distribution of
each array:
cdf(x) = Pr[X <= x].
First runs a GUI to get the number of bins wanted by
the user, then performs the actual analysis. Used by: Plugin
Uses: Table, CdfOptions, histogram, Numeric, AnalysisPlugins,
histogram, libglade, gtk, ErrorHandler, CustomError
Input: table : Table
Output: cdf : Table
Preconditions: None
Postconditions: None
SRS Refs: 3.2.1.3f, 3.2.1.4
Author: mayadm
Date: 30/7/02
|
doCdf ( table, num_bins )
Purpose: Calculates the actual cumulative distribution
of each array:
cdf(x) = Pr[X <= x]. Used by: cdf
Uses: Table, histogram, Numeric, AnalysisPlugins
Input: table : Table, num_bins : int
Output: cdf : Table
Preconditions: None
Postconditions: None
SRS Refs: 3.2.1.3f, 3.2.1.4
Author: mayadm
Date: 30/9/02
|