求微分方程的4階C階Runge-Kutaa方法(c語言算例)

1  公式 2 程序算例 #include <stdio.h> #include <stdlib.h> #include <math.h> #define PI 3.1415926 float f(float x,float y) {     return y*tan(x)+acos(x); } int main(int argc, char *argv[]) {     int N=10; //
相關文章
相關標籤/搜索