1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
{{alias}}( p, k )
Evaluates the quantile function for a chi distribution with degrees of
freedom `k` at a probability `p`.
If `p < 0` or `p > 1`, the function returns `NaN`.
If provided `NaN` for any argument, the function returns `NaN`.
If provided `k < 0`, the function returns `NaN`.
Parameters
----------
p: number
Input probability.
k: number
Degrees of freedom.
Returns
-------
out: number
Evaluated quantile function.
Examples
--------
> var y = {{alias}}( 0.8, 1.0 )
~1.282
> y = {{alias}}( 0.5, 4.0 )
~1.832
> y = {{alias}}( 0.8, 0.1 )
~0.116
> y = {{alias}}( -0.2, 0.5 )
NaN
> y = {{alias}}( 1.1, 0.5 )
NaN
> y = {{alias}}( NaN, 1.0 )
NaN
> y = {{alias}}( 0.0, NaN )
NaN
// Negative degrees of freedom:
> y = {{alias}}( 0.5, -1.0 )
NaN
// Degenerate distribution when `k = 0`:
> y = {{alias}}( 0.3, 0.0 )
0.0
> y = {{alias}}( 0.9, 0.0 )
0.0
{{alias}}.factory( k )
Returns a function for evaluating the quantile function of a chi
distribution with degrees of freedom `k`.
Parameters
----------
k: number
Degrees of freedom.
Returns
-------
quantile: Function
Quantile function.
Examples
--------
> var myquantile = {{alias}}.factory( 2.0 );
> var y = myquantile( 0.3 )
~0.845
> y = myquantile( 0.7 )
~1.552
See Also
--------
|