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

Standardize() public static method

Standardizes column data, removing the empirical standard deviation from each variable.
This method does not remove the empirical mean prior to execution.
public static Standardize ( this matrix, bool inPlace = false ) : ].double[
matrix this A matrix where each column represent a variable and each row represent a observation.
inPlace bool True to perform the operation in place, altering the original input matrix.
return ].double[
        public static double[,] Standardize(this double[,] matrix, bool inPlace = false)
        {
            return Standardize(matrix, Measures.StandardDeviation(matrix), inPlace);
        }

Same methods

Tools::Standardize ( this matrix, double standardDeviations, bool inPlace = false, double tol = 1e-12 ) : ].double[
Tools::Standardize ( this values, bool inPlace = false ) : double[]
Tools::Standardize ( this values, double standardDeviation, bool inPlace = false ) : double[]
Tools::Standardize ( this matrix, bool inPlace = false ) : double[][]
Tools::Standardize ( this matrix, double standardDeviations, bool inPlace = false, double tol = 1e-12 ) : double[][]