  | OneSampleKSTestUpdate(IDFColumn, FuncDouble, Double) Method | 
            Updates this test with new sample data and a new cumulative distribution
            function (CDF).
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic void Update(
	IDFColumn data,
	Func<double, double> cdf
)
Public Sub Update ( 
	data As IDFColumn,
	cdf As Func(Of Double, Double)
)
public:
void Update(
	IDFColumn^ data, 
	Func<double, double>^ cdf
)
member Update : 
        data : IDFColumn * 
        cdf : Func<float, float> -> unit Parameters
- data  IDFColumn
 - The sample data.
 - cdf  FuncDouble, Double
 - A functor that takes a double-precision floating point
            number and returns a double-precision floating point number that 
            encapsulates the hypothesized cumulative distribution function (CDF).
 
Exceptions| Exception | Condition | 
|---|
| InvalidArgumentException | 
            Thrown if data is not numeric or has length of zero, after 
            missing values are ignored.
             | 
Remarks
            Missing values are ignored.
            
See Also