|
CircularStandardError Method (Int32, Double, Double, Double)
|
Computes the standard error of the given angles.
Namespace:
Accord.Statistics
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public static double StandardError(
int samples,
double cos,
double sin,
double alpha
)
Public Shared Function StandardError (
samples As Integer,
cos As Double,
sin As Double,
alpha As Double
) As Double
Request Example
View SourceParameters
- samples
- Type: SystemInt32
The number of samples. - cos
- Type: SystemDouble
The sum of the cosines of the samples. - sin
- Type: SystemDouble
The sum of the sines of the samples. - alpha
- Type: SystemDouble
The confidence level. Default is 0.05.
Return Value
Type:
DoubleThe standard error of the angles.
See Also