  | OneSampleTTestUpdate(Double, Double, Int32) Method | 
            Updates the test statistic with new sample parameters.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic void Update(
	double xbar,
	double s,
	int n
)
Public Sub Update ( 
	xbar As Double,
	s As Double,
	n As Integer
)
public:
void Update(
	double xbar, 
	double s, 
	int n
)
member Update : 
        xbar : float * 
        s : float * 
        n : int -> unit Parameters
- xbar  Double
 - The sample mean.
 - s  Double
 - The sample standard deviation.
 - n  Int32
 - The sample size.
 
Remarks
            The population mean is not changed.
            
See Also