Accord.Statistics.Tools.ZScores C# (CSharp) Method

ZScores() public static method

Generates the Standard Scores, also known as Z-Scores, from the given data.
public static ZScores ( this matrix ) : ].double[
matrix this A number multi-dimensional array containing the matrix values.
return ].double[
        public static double[,] ZScores(this double[,] matrix)
        {
            double[] mean = Measures.Mean(matrix, dimension: 0);
            return ZScores(matrix, mean, Measures.StandardDeviation(matrix, mean));
        }

Same methods

Tools::ZScores ( this matrix, double means, double standardDeviations ) : ].double[
Tools::ZScores ( this matrix ) : double[][]
Tools::ZScores ( this matrix, double means, double standardDeviations ) : double[][]