TransformationModel<T>.Transform Method

Definition

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

Overload List

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

Transform(Matrix<Double>)

Applies the transformation to a set of observations.
C#
public Matrix<double> Transform(
	Matrix<double> input
)

Parameters

input  Matrix<Double>
The observations to transform.

Return Value

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

Transform(Vector<Double>)

Applies the transformation to a single observation.
C#
public Vector<double> Transform(
	Vector<double> input
)

Parameters

input  Vector<Double>
The observation to transform.

Return Value

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

See Also