ChiSquaredTestSetRange Method |
Sets endpoints of the range of the distribution.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public void SetRange(
double lower,
double upper
)
Public Sub SetRange (
lower As Double,
upper As Double
)
public:
void SetRange(
double lower,
double upper
)
member SetRange :
lower : float *
upper : float -> unit
Parameters
- lower
- Type: SystemDouble
A double which specifies the lower range limit.
- upper
- Type: SystemDouble
A double which specifies the upper range limit.
Remarks
Points outside of the range are ignored so that distributions
conditional on the range can be used. In this case, the point lower
is excluded from the first interval, but the point upper is included
in the last interval.
By default, a range on the whole real line is used.
See Also