FastIca.TransformInto Method

Definition

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

Overload List

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

TransformInto(Matrix<Double>, Matrix<Double>)

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

Parameters

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

Return Value

Matrix<Double>
The transformed matrix.

TransformInto(Vector<Double>, Vector<Double>)

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

Parameters

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

Return Value

Vector<Double>
The transformed vector.

See Also