Vector<T>.NormInternal Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

NormInternal(Int32) Returns the norm of the specified order of this vector.
NormInternal(T) Returns the norm of the specified order of this vector.

NormInternal(Int32)

Returns the norm of the specified order of this vector.
C#
protected virtual T NormInternal(
	int order
)

Parameters

order  Int32
An integer specifying the order of the norm.

Return Value

T
The norm of order order of the Vector<T>.

Remarks

Inheritors must only provide implementations for orders different from 0 and 1.

NormInternal(T)

Returns the norm of the specified order of this vector.
C#
protected virtual T NormInternal(
	T order
)

Parameters

order  T
A number value specifying the order of the norm.

Return Value

T
The norm of order order of the Vector<T>.

Remarks

Inheritors must only provide implementations for orders different from 0 and 1.

See Also