Vector<T>.WeightedNorm Method

Returns the weighted two-norm of the vector.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public T WeightedNorm(
	Vector<T> weightVector
)

Parameters

weightVector  Vector<T>
The weight vector.

Return Value

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

Exceptions

DimensionMismatchException

The vector weightVector is not the same length as this vector.

See Also