Vector<T>.Norm Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.3

Overload List

Norm() Returns the two-norm of the vector.
Norm(Int32) Returns the norm of the specified order of this vector.
Norm(T) Returns the norm of the specified order of this vector.
Norm(VectorNorm) Returns the two-norm of the vector.

Norm

Returns the two-norm of the vector.
C#
public T Norm()

Return Value

T
The two-norm of the Vector<T>.

Norm(Int32)

Returns the norm of the specified order of this vector.
C#
public T Norm(
	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>.

Norm(T)

Returns the norm of the specified order of this vector.
C#
public T Norm(
	T order
)

Parameters

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

Return Value

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

Norm(VectorNorm)

Returns the two-norm of the vector.
C#
public T Norm(
	VectorNorm norm
)

Parameters

norm  VectorNorm
 

Return Value

T
The two-norm of the Vector<T>.

See Also