- 论坛徽章:
- 0
|
这个是书上得一个常微分方程数值求解得程序,但max()无法使用。请问,不用VC,那用什么?
#include<iostream>
#include<math.h>
#include<aglorithm>
using namespace std;
class ode
{ double tini; //初始时间
double ison; //初始解
double tend; //结束时间
double (*sfn)(double t,double x); //源函数
public:
ode(double t0,double x0,double T,double (*f)(double,double))
{ tini=t0;ison=x0;tend=T;sfn=f; }
double* euler(int n) const;
};
double* ode::euler (int n) const
{ double* x=new double [n+1];
double h=(tend-tini)/n;
x[0]=ison;
for(int k=0;k<n;k++)
x[k+1]=x[k]+h*sfn(tini+k*h,x[k]);
return x;
}
double* ode::eulerpc(int n) const
{ double* x=new double[n+1];
}
double f(double t,double x)
{ return x*(1-exp(t))/(1+exp(t));}
double exact(double t)
{return 12*exp(t)/pow(1+exp(t),2);}
int main()
{ ode exmp(0,3,2,f);
double* soln=exmp.euler (100);
double norm=0;
double h=2.0/100;
for(int k=1;k<=100;k++)
norm=max(norm,fabs(exact(k*h)-soln[k]));
cout<<"max norm of error by eulur's method ="<<norm<<'\n';
} |
|