|  | OneSampleZTestUpdate(Int32, Double, Double) Method | 
            Updates the test statistic with new sample data and population 
            parameters.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic void Update(
	int[] data,
	double mu0,
	double sigma
)
Public Sub Update ( 
	data As Integer(),
	mu0 As Double,
	sigma As Double
)
public:
void Update(
	array<int>^ data, 
	double mu0, 
	double sigma
)
member Update : 
        data : int[] * 
        mu0 : float * 
        sigma : float -> unit Parameters
- data  Int32
- An array of observed values.
- mu0  Double
- The population mean.
- sigma  Double
- The population standard deviation.
 Remarks
Remarks
            The sample mean and sample size are computed from the given data array.
            
 See Also
See Also