FactorAnalysis.InverseTransformInto Method

Definition

Namespace: Numerics.NET.Statistics.Multivariate
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(Vector<Double>, Vector<Double>)

Applies the inverse transformation to a set of observations.
C#
public override 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