20 lines
315 B
C++
20 lines
315 B
C++
//
|
|
// Created by quentin on 9/13/22.
|
|
//
|
|
|
|
#ifndef BUDGET_MATH_H
|
|
#define BUDGET_MATH_H
|
|
|
|
|
|
#include "polynomialFunction.h"
|
|
|
|
namespace Budget::Utilities {
|
|
class Math {
|
|
public:
|
|
static PolynomialFunction polynomialFit(int degree, int numberOfPoints, const double x[], const double y[]);
|
|
};
|
|
}
|
|
|
|
|
|
#endif //BUDGET_MATH_H
|