#include "stack-c.h"Include dependency graph for ext11c.c:

Go to the source code of this file.
Functions | |
| int | ext11c (int *neq, double *t, double *y, double *ydot) |
Definition at line 13 of file ext11c.c.
References m, n, and ReadMatrix.
00014 { 00015 static int m, n; 00016 static double param[3]; 00017 ReadMatrix("param", &m, &n, param); 00018 ydot[0] = -param[0] * y[0] + param[1] * y[1] * y[2]; 00019 ydot[2] = param[2] * y[1] * y[1]; 00020 ydot[1] = -ydot[0] - ydot[2]; 00021 return(0); 00022 }
1.5.1