Vector moving_mean
The average of the moving points, that was subtracted from those data.
Definition: normalization.hpp:38
Vector fixed_mean
The average of the fixed points, that was subtracted from those data.
Definition: normalization.hpp:32
Matrix moving
The moving points.
Definition: normalization.hpp:40
Basic typedefs for our flavors of Eigen matrices.
Eigen::MatrixXd Matrix
Our base matrix class.
Definition: matrix.hpp:29
Eigen::VectorXd Vector
Typedef for our specific type of vector.
Definition: matrix.hpp:32
double moving_scale
The scaling factor for the moving points.
Definition: normalization.hpp:42
The results of normalizing data to a unit cube (or whatever dimensionality).
Definition: normalization.hpp:30
Matrix fixed
The fixed points.
Definition: normalization.hpp:34
Top-level cpd namespace.
Definition: affine.hpp:26
Normalization(const Matrix &fixed, const Matrix &moving, bool linked=true)
Creates a new normalization for the provided matrices.
double fixed_scale
The scaling factor for the fixed points.
Definition: normalization.hpp:36