Click or drag to resize

AffineTransformation Class

Represents Affine Factor Transformation (y = x*A + b). http://en.wikipedia.org/wiki/Affine_transformation
Inheritance Hierarchy
SystemObject
  FinMath.FactorAnalysisFactorTransformation
    FinMath.FactorAnalysisAffineTransformation
      FinMath.FactorAnalysisPCA

Namespace:  FinMath.FactorAnalysis
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
[SerializableAttribute]
public class AffineTransformation : FactorTransformation

The AffineTransformation type exposes the following members.

Constructors
  NameDescription
Public methodAffineTransformation(Matrix)
Create new instance of linear transformation.
Public methodAffineTransformation(Vector)
Create new instance of shift transformation.
Public methodAffineTransformation(Matrix, Vector)
Create new instance of affine transformation.
Top
Properties
  NameDescription
Public propertyOriginalVariablesCount
Variables count in source dataset.
(Inherited from FactorTransformation.)
Public propertyStatus
Method Status.
(Inherited from FactorTransformation.)
Public propertyTransformedVariablesCount
Transformed components count.
(Inherited from FactorTransformation.)
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInverseTransform(Matrix)
Apply computed inverse transformation to transformed component samples.
(Inherited from FactorTransformation.)
Public methodInverseTransform(Vector)
Apply computed inverse transformation to transformed component sample.
(Inherited from FactorTransformation.)
Public methodInverseTransform(Matrix, Matrix)
Apply computed inverse transformation to transformed component samples.
(Overrides FactorTransformationInverseTransform(Matrix, Matrix).)
Public methodInverseTransform(Vector, Vector)
Apply computed inverse transformation to transformed component sample.
(Overrides FactorTransformationInverseTransform(Vector, Vector).)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodTransform(Matrix)
Apply computed transformation to new observations.
(Inherited from FactorTransformation.)
Public methodTransform(Vector)
Apply computed transformation to new observation.
(Inherited from FactorTransformation.)
Public methodTransform(Matrix, Matrix)
Apply computed transformation to new observations.
(Overrides FactorTransformationTransform(Matrix, Matrix).)
Public methodTransform(Vector, Vector)
Apply computed transformation to new observation.
(Overrides FactorTransformationTransform(Vector, Vector).)
Top
Operators
  NameDescription
Public operatorStatic memberAddition
Calculate sum of Affine transformations.
Public operatorStatic memberMultiply(AffineTransformation, AffineTransformation)
Calculate composition of Affine Transformations.
Public operatorStatic memberMultiply(AffineTransformation, Double)
Multiply affine transformation by a scalar.
Top
See Also