cdfKolmogorov

Syntax

cdfKolmogorov(X)

Arguments

X is a numeric scalar or vector.

Details

Return the value of the cumulative distribution function of a Kolmogorov distribution.

Examples

cdfKolmogorov([0.1, 0.3, 0.5, 0.7, 0.9]);
// output
[1, 0.999991, 0.963945, 0.711235, 0.392731]

cdfKolmogorov([1,2,3]);
// output
[0.27, 0.000671, 3.045996E-8]