首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
gill专题
求解常微分方程初值问题之多变量Runge_Kutta_Gill法
//用RKG法求解常微分方程组 #include <iostream> #include <math.h> #include <iomanip> #include <fstream> using namespace std; class s_ode { private: int i, j, l, n; double a, b, c, d, h, x, x1, xi, xf; double
阅读更多...