You are here: Start » AVL.NET » AVS.NormalizeMatrixData Method

AVS.NormalizeMatrixData Method

Treats Matrix as a data frame, where examples are in rows while columns represent features, and normalizes the data by subtracting mean from each column and dividing it by its standard deviation.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void NormalizeMatrixData
(
	AvlNet.Matrix inMatrix,
	AvlNet.Matrix outNormalizedMatrix,
	AvlNet.Matrix outMeansVector,
	AvlNet.Matrix outStandardDeviationsVector
)

Parameters

Name Type Range Default Description
inMatrixAvlNet.MatrixInput data frame.
outNormalizedMatrixAvlNet.MatrixResulting normalized matrix.
outMeansVectorAvlNet.MatrixResulting Means vector - copy of inMeansVector, or calculated Means, if inMeansVector was set NIL.
outStandardDeviationsVectorAvlNet.MatrixResulting StdDevs vector - copy of inStandardDeviationsVector, or calculated Means, if inStandardDeviationsVector was set NIL.

Function Overrides

See also