summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/differential_calculus/interfaces/int_ode.h
diff options
context:
space:
mode:
authorsiddhu89902016-05-10 17:17:41 +0530
committersiddhu89902016-05-10 17:17:41 +0530
commit7d13dc4707f5c4387acdb1946b955490629d2f98 (patch)
treea343e5ec78c9fa354444688f1b3bbd89ca55170f /2.3-1/src/c/differential_calculus/interfaces/int_ode.h
parentd0dae962944e7fdb42bca7d0aa80055c44881b45 (diff)
downloadScilab2C-7d13dc4707f5c4387acdb1946b955490629d2f98.tar.gz
Scilab2C-7d13dc4707f5c4387acdb1946b955490629d2f98.tar.bz2
Scilab2C-7d13dc4707f5c4387acdb1946b955490629d2f98.zip
Added support for cumprod, cumsum, triu, tril functions
Diffstat (limited to '2.3-1/src/c/differential_calculus/interfaces/int_ode.h')
-rw-r--r--2.3-1/src/c/differential_calculus/interfaces/int_ode.h27
1 files changed, 24 insertions, 3 deletions
diff --git a/2.3-1/src/c/differential_calculus/interfaces/int_ode.h b/2.3-1/src/c/differential_calculus/interfaces/int_ode.h
index 5000ed5e..a27acbad 100644
--- a/2.3-1/src/c/differential_calculus/interfaces/int_ode.h
+++ b/2.3-1/src/c/differential_calculus/interfaces/int_ode.h
@@ -1,9 +1,30 @@
-// FOSSEE IIT Bombay
+// 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
-#ifdef __INT_ODE_H__
+#ifndef __INT_ODE_H__
#define __INT_ODE_H__
-#define d0d0d0g2ODEd0(in1, in2, in3, in4) ODE(in1, in2, in3, in4, 1, 1.0e-2,\
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#define d0d0d0g2oded0(in1, in2, in3, in4) dodes(in1, in2, in3, in4, 1, 1.0e-2,\
1.0e-2, 1.0e-6)
+#define d2d0d0g2oded2(in1, size1, in2, in3, func_name, strsize, out) doded(in1, in2, in3, func_name \
+ 1, 1.0e-2, 1.0e-2, 1.0e-6, out)
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+
#endif /*__INT_ODE_H__*/ \ No newline at end of file