DenseVector<T>.NormInternal Method

Definition

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

Overload List

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

NormInternal(T)

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

Parameters

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

Return Value

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

NormInternal(Int32)

Returns the norm of the specified order of this dense vector.
C#
protected override 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 DenseVector<T>.

See Also