BasisNorm Method

Returns the norm of the vector having the specified coordinates.

Definition

Namespace: Novacta.Analytics.Advanced
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public double Norm(
	DoubleMatrix coordinates
)

Parameters

coordinates  DoubleMatrix
The vector coordinates.

Return Value

Double
The norm of the vector having the specified coordinates.

Remarks

Parameter coordinates must be passed as a row vector. Let LaTeX equation be the matrix representation of this instance, and let LaTeX equation be equal to coordinates. Then method Norm(DoubleMatrix) returns

LaTeX equation

where LaTeX equation is the scalar product induced by basis LaTeX equation.

Exceptions

ArgumentNullExceptioncoordinates is null.
ArgumentOutOfRangeExceptioncoordinates is not a row vector.
-or-
coordinates has Count not equal to the Dimension of the Basis.

See Also