Skip to content
Snippets Groups Projects
Commit f4eaea99 authored by Lorenz Meier's avatar Lorenz Meier
Browse files

Temp cal: Use correct constants

parent ae737d8d
No related branches found
No related tags found
No related merge requests found
......@@ -140,7 +140,7 @@ public:
}
for (unsigned i = 0; i < _forder; i++) {
res[i] = 0.0f;
res[i] = 0.0;
for (int j = 0; j < _forder; j++) {
res[i] += IVTV(i, j) * (double)_VTY(j);
......@@ -158,7 +158,7 @@ private:
void update_VTY(double x, double y)
{
double temp = 1.0f;
double temp = 1.0;
PF_DEBUG("O %.6f\n", (double)x);
for (int8_t i = _forder - 1; i >= 0; i--) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment