|
MeasuresStandardError Method (Int32, Double)
|
Computes the Standard Error for a sample size, which estimates the
standard deviation of the sample mean based on the population mean.
Namespace:
Accord.Statistics
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static double StandardError(
int samples,
double standardDeviation
)
Public Shared Function StandardError (
samples As Integer,
standardDeviation As Double
) As Double
Request Example
View SourceParameters
- samples
- Type: SystemInt32
The sample size. - standardDeviation
- Type: SystemDouble
The sample standard deviation.
Return Value
Type:
DoubleThe standard error for the sample.
See Also