next up previous
Next: 4.7.4.3 rkf.c Up: 4.7.4 RKF45 自作プログラム開発 Previous: 4.7.4.1 testrkf3.c

4.7.4.2 rkf3.h


/*
 * rkf3.h
 */

#define RKF45_STAGE (6)

typedef void function(double t, double *x, double *f);
int bf_rkf45(int d, function f,
	     double t, double *x, double h,
	     double *nextx, double *error,
	     double k[][RKF45_STAGE], double *work);


next up previous
Next: 4.7.4.3 rkf.c Up: 4.7.4 RKF45 自作プログラム開発 Previous: 4.7.4.1 testrkf3.c
桂田 祐史
2015-05-30