CurveFitter<T>.Unscale Method

Definition

Namespace: Numerics.NET.Curves.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.0

Overload List

Unscale(DenseVector<T>) Undoes the scaling of the components of a vector using the values from ScaleVector.
Unscale(Vector<T>) Undoes the scaling of the components of a vector using the values from ScaleVector.

Unscale(DenseVector<T>)

Undoes the scaling of the components of a vector using the values from ScaleVector.
C#
protected void Unscale(
	DenseVector<T> vector
)

Parameters

vector  DenseVector<T>
A dense vector.

Exceptions

ArgumentNullExceptionvector is null.

Unscale(Vector<T>)

Undoes the scaling of the components of a vector using the values from ScaleVector.
C#
protected Vector<T> Unscale(
	Vector<T> vector
)

Parameters

vector  Vector<T>
A dense vector.

Return Value

Vector<T>
A reference to the scaled vector.

Exceptions

ArgumentNullExceptionvector is null.

See Also