嗨,我有一些数据,我想对这些数据进行 polinom 首先我认为它应该是:ax^2 +bx+c 和 x+x1=-b/a ;x*x1=c/a 我写了这个代码:
#include <iostream>
#include <math.h>
#include <stdio.h>
using namespace std;
void createfunction(double x,double x1)
{
int a,b,c;
double x2 = 1.0;
a=1;
b=(-a)*(x+x1);
c=a*(x*x1);
// int denklem=a*x2*x2+b*x2+c;
cout<<a<<"x^2+"<<b<<"x+"<<c<<endl;
// cout<<denklem;
//derive(a)
}
int main(int argc, char** argv) {
createfunction(100,101);
return 0;
}
这很奇怪,但我可以理解这种方法完全错误:(阅读这些http://mathbitsnotebook.com/Algebra1/StatisticsReg/ST2FittingFunctions.html https://en.wikipedia.org/wiki/Polynomial_regression
但我不知道如何用c编写这段代码你能帮我吗谢谢你的提前