Fast Ica.Inverse Transform Into Method
Definition
Namespace: Numerics.NET.Statistics.Multivariate
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Overload List
Inverse | Applies the inverse transformation to a matrix. |
Inverse | Applies the inverse transformation to a vector. |
InverseTransformInto(Matrix<Double>, Matrix<Double>)
Applies the inverse transformation to a matrix.
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.
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.