complete first draft of package
[epclust.git] / old_C_code / stage1 / src / Algorithm / compute_coefficients.h
CommitLineData
ab4a34ef
BA
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)
7void compute_coefficients(PowerCurve* powerCurves, uint32_t nbSeries, uint32_t nbValues,
73d68777 8 float* reducedCoordinates, uint32_t index, uint32_t nbReducedCoordinates);
ab4a34ef
BA
9
10#endif