|  | TwoSamplePairedTTestUpdate(IDFColumn, IDFColumn) Method | 
            Updates the test statistic with new sample data.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic void Update(
	IDFColumn data1,
	IDFColumn data2
)
Public Sub Update ( 
	data1 As IDFColumn,
	data2 As IDFColumn
)
public:
void Update(
	IDFColumn^ data1, 
	IDFColumn^ data2
)
member Update : 
        data1 : IDFColumn * 
        data2 : IDFColumn -> unit Parameters
- data1  IDFColumn
- A column of observed values.
- data2  IDFColumn
- A column of observed values.
 Exceptions
Exceptions Remarks
Remarks
            The mean of the differences between paired observations, the standard
            deviation of the differences, and the sample size are computed from the
            given columns. Paired observations where either value is missing are ignored.
            
 Example
Example
            Thrown if the given data is not numeric.
            
 See Also
See Also