首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
fehlberg专题
求解常微分方程初值问题之Runge_Kutta_Fehlberg法
//用Runge_Kutta_Fehlberg法求解微分方程 #include <iostream> #include <math.h> #include <iomanip> #include <fstream> using namespace std; class rkf { private: int flag; double eps, error, f, h, hnew, x, xf,
阅读更多...