Returns the one-way frequency table using class marks.
Namespace:
Imsl.Stat
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
C# |
---|
public double[] GetFrequencyTableUsingClassmarks( double[] classmarks ) |
Visual Basic (Declaration) |
---|
Public Function GetFrequencyTableUsingClassmarks ( _ classmarks As Double() _ ) As Double() |
Visual C++ |
---|
public: array<double>^ GetFrequencyTableUsingClassmarks( array<double>^ classmarks ) |
Parameters
- classmarks
- Type: array<
System..::.Double
>[]()[]
A double array containing either the cutpoints or the class marks.
Return Value
A double array containing the one-way frequency table.
Remarks
Equally spaced class marks in ascending order must be provided in the
array classmarks of length nIntervals. The class marks
are the midpoints of each of the nIntervals. Each interval is
assumed to have length classmarks[1] - classmarks[0].
nIntervals must be greater than or equal to 2.