ext11c.c File Reference

#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)


Function Documentation

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 }


Generated on Sun Mar 4 16:07:43 2007 for Scilab [trunk] by  doxygen 1.5.1