TableOneWayGetFrequencyTable Method (Double, Double) |
Returns a one-way frequency table using known bounds.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public double[] GetFrequencyTable(
double lowerBound,
double upperBound
)
Public Function GetFrequencyTable (
lowerBound As Double,
upperBound As Double
) As Double()
public:
array<double>^ GetFrequencyTable(
double lowerBound,
double upperBound
)
member GetFrequencyTable :
lowerBound : float *
upperBound : float -> float[]
Parameters
- lowerBound
- Type: SystemDouble
A double specifies the right endpoint.
- upperBound
- Type: SystemDouble
A double specifies the left endpoint.
Return Value
Type:
Double
A
double array containing the one-way frequency table.
Remarks
The one-way frequency table is computed using two semi-infinite
intervals as the initial and last intervals. The initial interval is
closed on the right and includes lowerBound as its right
endpoint. The last interval is open on the left and includes all
values greater than upperBound. The remaining nIntervals -
2 intervals are each of length (upperBound - lowerBound) /
(nIntervals - 2) and are open on the left and closed on the
right. nIntervals must be greater than or equal to 3.
See Also