complete first draft of package
[epclust.git] / old_C_code / stage1 / src / Algorithm / compute_coefficients.h
1 #ifndef PPAM_COMPUTE_COEFFICIENTS_H
2 #define PPAM_COMPUTE_COEFFICIENTS_H
3
4 #include "Util/types.h"
5
6 // compute rows of the matrix of reduced coordinates (see computeCoefficients.R)
7 void compute_coefficients(PowerCurve* powerCurves, uint32_t nbSeries, uint32_t nbValues,
8 float* reducedCoordinates, uint32_t index, uint32_t nbReducedCoordinates);
9
10 #endif