CurveFitter.Scale Method

Definition

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

Overload List

Scale(DenseVector<Double>) Scales the components of a vector using the values from ScaleVector.
Scale(Vector<Double>) Scales the components of a vector using the values from ScaleVector.

Scale(DenseVector<Double>)

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

Parameters

vector  DenseVector<Double>
A dense vector.

Exceptions

ArgumentNullExceptionvector is null.

Scale(Vector<Double>)

Scales the components of a vector using the values from ScaleVector.
C#
protected Vector<double> Scale(
	Vector<double> vector
)

Parameters

vector  Vector<Double>
A vector.

Return Value

Vector<Double>
A reference to the scaled vector.

Exceptions

ArgumentNullExceptionvector is null.

See Also