summaryrefslogtreecommitdiff
path: root/src/c/differential_calculus/includes
diff options
context:
space:
mode:
authorsiddhu89902016-05-27 11:50:04 +0530
committersiddhu89902016-05-27 11:50:04 +0530
commit212c54043e454e41ca4b23a5b965d4dbd4b683fe (patch)
treec1b62c677facad021562292b823b5e21978c0e4b /src/c/differential_calculus/includes
parenta6d6a9c1e88b75668868af691c9731075a514ffb (diff)
downloadScilab2C_fossee_old-212c54043e454e41ca4b23a5b965d4dbd4b683fe.tar.gz
Scilab2C_fossee_old-212c54043e454e41ca4b23a5b965d4dbd4b683fe.tar.bz2
Scilab2C_fossee_old-212c54043e454e41ca4b23a5b965d4dbd4b683fe.zip
Support for basic ODE function added
Diffstat (limited to 'src/c/differential_calculus/includes')
-rw-r--r--src/c/differential_calculus/includes/ode.h25
1 files changed, 13 insertions, 12 deletions
diff --git a/src/c/differential_calculus/includes/ode.h b/src/c/differential_calculus/includes/ode.h
index f08909c..0a87020 100644
--- a/src/c/differential_calculus/includes/ode.h
+++ b/src/c/differential_calculus/includes/ode.h
@@ -1,14 +1,15 @@
-// Copyright (C) 2016 - IIT Bombay - FOSSEE
-//
-// This file must be used under the terms of the CeCILL.
-// This source file is licensed as described in the file COPYING, which
-// you should have received as part of this distribution. The terms
-// are also available at
-// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
-// Author: Siddhesh Wani
-// Organization: FOSSEE, IIT Bombay
-// Email: toolbox@scilab.in
+/* Copyright (C) 2016 - IIT Bombay - FOSSEE
+ This file must be used under the terms of the CeCILL.
+ This source file is licensed as described in the file COPYING, which
+ you should have received as part of this distribution. The terms
+ are also available at
+ http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+ Author: Siddhesh Wani
+ Organization: FOSSEE, IIT Bombay
+ Email: toolbox@scilab.in
+*/
+
#ifndef __ODE_H__
#define __ODE_H__
@@ -16,8 +17,8 @@ double dodes(double initial_value, double start_time, double end_time, \
char *ode_function, double nequs, double eps_abs, double eps_rel, \
double step_size);
-void doded(double *initial_value, double start_time, double end_time, \
+void dodea(double *initial_value, double start_time, double end_time, \
char *ode_function, double nequs, double eps_abs, double eps_rel, \
- double step_size, double *out);
+ double step_size, int *params, double *out);
#endif /*__ODE_H__*/ \ No newline at end of file