|  | WilcoxonSignedRankTestUpdate(DoubleVector, DoubleVector, Boolean) Method | 
            Updates the test statistic with new sample data.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic void Update(
	DoubleVector data1,
	DoubleVector data2,
	bool exactPValue
)
Public Sub Update ( 
	data1 As DoubleVector,
	data2 As DoubleVector,
	exactPValue As Boolean
)
public:
void Update(
	DoubleVector^ data1, 
	DoubleVector^ data2, 
	bool exactPValue
)
member Update : 
        data1 : DoubleVector * 
        data2 : DoubleVector * 
        exactPValue : bool -> unit Parameters
- data1  DoubleVector
- A vector of observed values.
- data2  DoubleVector
- A vector of observed values.
- exactPValue  Boolean
- 
            A boolean value indicating whether to calculate an exact p-value by enumerating all possible combinations of the test
            statistic given n. If false, a normal approximation is used.
            
 Exceptions
Exceptions| Exception | Condition | 
|---|
| InvalidArgumentException | Thrown if the given data contains zero valid pairs (valid pairs are non-NaN and unequal), or if
            exactPvalue equals true for n > 30; | 
 Remarks
Remarks
            Paired observations where either value is missing, or where the difference between values
            is zero, are ignored.
            
 See Also
See Also