TransformationModel<T>.InverseTransformInto Method

Definition

Namespace: Numerics.NET.DataAnalysis.Models
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

InverseTransformInto(Matrix<Double>, Matrix<Double>) Applies the inverse transformation to a set of observations.
InverseTransformInto(Vector<Double>, Vector<Double>) Applies the inverse transformation to a set of observations.

InverseTransformInto(Matrix<Double>, Matrix<Double>)

Applies the inverse transformation to a set of observations.
C#
public virtual Matrix<double> InverseTransformInto(
	Matrix<double> output,
	Matrix<double>? input
)

Parameters

output  Matrix<Double>
The transformed values to transform back.
input  Matrix<Double>
The matrix that is to hold the result of the transformation. May be null.

Return Value

Matrix<Double>
A matrix that contains the back-transformed values.

InverseTransformInto(Vector<Double>, Vector<Double>)

Applies the inverse transformation to a set of observations.
C#
public abstract Vector<double> InverseTransformInto(
	Vector<double> output,
	Vector<double>? input
)

Parameters

output  Vector<Double>
The transformed values to transform back.
input  Vector<Double>
The vector that is to hold the result of the inverse transformation. May be null.

Return Value

Vector<Double>
A matrix that contains the back-transformed values.

See Also