Click or drag to resize

BasisNorm Method

Returns the norm of the vector having the specified coordinates.

Namespace:  Novacta.Analytics.Advanced
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
public double Norm(
	DoubleMatrix coordinates
)

Parameters

coordinates
Type: Novacta.AnalyticsDoubleMatrix
The vector coordinates.

Return Value

Type: Double
The norm of the vector having the specified coordinates.
Exceptions
ExceptionCondition
ArgumentNullExceptioncoordinates is null.
ArgumentOutOfRangeExceptioncoordinates is not a row vector.
-or-
coordinates has Count not equal to the Dimension of the Basis.
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.

See Also