|
CircularStandardDeviation Method (Int32, Double, Double)
|
Computes the Standard Deviation of the given angles.
Namespace:
Accord.Statistics
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public static double StandardDeviation(
int samples,
double cos,
double sin
)
Public Shared Function StandardDeviation (
samples As Integer,
cos As Double,
sin 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.
Return Value
Type:
DoubleThe standard deviation of the angles.
See Also