Accord.Statistics.Measures.WeightedStandardDeviation C# (CSharp) Method

WeightedStandardDeviation() public static method

Calculates the matrix Standard Deviations vector.
public static WeightedStandardDeviation ( this matrix, double weights ) : double[]
matrix this A matrix whose deviations will be calculated.
weights double The number of times each sample should be repeated.
return double[]
        public static double[] WeightedStandardDeviation(this double[,] matrix, double[] weights)
        {
            return WeightedStandardDeviation(matrix, weights, WeightedMean(matrix, weights));
        }

Same methods

Measures::WeightedStandardDeviation ( this matrix, double weights, bool unbiased = true ) : double[]
Measures::WeightedStandardDeviation ( this matrix, double weights, double means ) : double[]
Measures::WeightedStandardDeviation ( this matrix, double weights, double means, bool unbiased = true ) : double[]
Measures::WeightedStandardDeviation ( this matrix, int weights ) : double[]
Measures::WeightedStandardDeviation ( this matrix, int weights, bool unbiased = true ) : double[]
Measures::WeightedStandardDeviation ( this matrix, int weights, double means ) : double[]
Measures::WeightedStandardDeviation ( this matrix, int weights, double means, bool unbiased = true ) : double[]