Matrix<T>.NormalizeRowsInPlace Method

Normalizes the rows of the matrix in place using the specified vector norm.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.2
C#
public Matrix<T> NormalizeRowsInPlace(
	VectorNorm vectorNorm = VectorNorm.TwoNorm
)

Parameters

vectorNorm  VectorNorm  (Optional)
The vector norm to use for normalization. Default is TwoNorm.

Return Value

Matrix<T>
The current matrix with normalized rows.

See Also