|  | TwoSampleUnpairedUnequalTTestUpdate(Double, Double, Int32, Double, Double, Int32) Method | 
            Updates the test statistic with new sample parameters.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic void Update(
	double xbar1,
	double s1,
	int n1,
	double xbar2,
	double s2,
	int n2
)
Public Sub Update ( 
	xbar1 As Double,
	s1 As Double,
	n1 As Integer,
	xbar2 As Double,
	s2 As Double,
	n2 As Integer
)
public:
void Update(
	double xbar1, 
	double s1, 
	int n1, 
	double xbar2, 
	double s2, 
	int n2
)
member Update : 
        xbar1 : float * 
        s1 : float * 
        n1 : int * 
        xbar2 : float * 
        s2 : float * 
        n2 : int -> unit Parameters
- xbar1  Double
- The mean of the first sample.
- s1  Double
- The standard deviation of the first sample.
- n1  Int32
- The size of the first sample.
- xbar2  Double
- The mean of the second sample.
- s2  Double
- The standard deviation of the second sample.
- n2  Int32
- The size of the second sample.
 See Also
See Also