FastIca.InverseTransformInto Method

Definition

Namespace: Numerics.NET.Statistics.Multivariate
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5

Overload List

InverseTransformInto(Matrix<Double>, Matrix<Double>) Applies the inverse transformation to a matrix.
InverseTransformInto(Vector<Double>, Vector<Double>) Applies the inverse transformation to a vector.

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

Applies the inverse transformation to a matrix.
C#
public override Matrix<double> InverseTransformInto(
	Matrix<double> output,
	Matrix<double>? input
)

Parameters

output  Matrix<Double>
The matrix to inverse transform.
input  Matrix<Double>
The matrix to store the result in.

Return Value

Matrix<Double>
The inverse transformed matrix.

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

Applies the inverse transformation to a vector.
C#
public override Vector<double> InverseTransformInto(
	Vector<double> output,
	Vector<double>? input
)

Parameters

output  Vector<Double>
The vector to inverse transform.
input  Vector<Double>
The vector to store the result in.

Return Value

Vector<Double>
The inverse transformed vector.

See Also