TransformationModel<T>.TransformInto Method

Definition

Namespace: Extreme.DataAnalysis.Models
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

TransformInto(Matrix<Double>, Matrix<Double>) Applies the transformation to a set of observations.
TransformInto(Vector<Double>, Vector<Double>) Applies the transformation to a single observation.

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

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

Parameters

input  Matrix<Double>
The observations to transform.
output  Matrix<Double>
 

Return Value

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

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

Applies the transformation to a single observation.
C#
public abstract Vector<double> TransformInto(
	Vector<double> input,
	Vector<double> output
)

Parameters

input  Vector<Double>
The observation to transform.
output  Vector<Double>
 

Return Value

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

See Also