CurveFitter.Unscale Method

Definition

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

Overload List

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

Unscale(DenseVector<Double>)

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

Parameters

vector  DenseVector<Double>
A dense vector.

Exceptions

ArgumentNullExceptionvector is null.

Unscale(Vector<Double>)

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

Parameters

vector  Vector<Double>
A dense vector.

Return Value

Vector<Double>
A reference to the scaled vector.

Exceptions

ArgumentNullExceptionvector is null.

See Also