summaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
Diffstat (limited to 'demos')
-rw-r--r--demos/FilterResponse.dem.sce18
-rw-r--r--demos/Jacobi.dem.sce18
-rw-r--r--demos/SVD.dem.sce20
-rw-r--r--demos/analogFilter.dem.sce18
-rw-r--r--demos/scilab2c.dem.gateway.sce10
-rw-r--r--demos/string.dem.sce16
6 files changed, 95 insertions, 5 deletions
diff --git a/demos/FilterResponse.dem.sce b/demos/FilterResponse.dem.sce
new file mode 100644
index 00000000..7104836d
--- /dev/null
+++ b/demos/FilterResponse.dem.sce
@@ -0,0 +1,18 @@
+// Copyright (C) 2017 - 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: Ankit Raj
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+//
+
+
+
+lines(0);
+
+global SCI2CHOME
+
+scilab2c(SCI2CHOME+"/tests/unit_tests/test_filterResponse/scilabcode/main.sci",TMPDIR,SCI2CHOME+"/tests/unit_tests/test_filterResponse/scilabcode");
diff --git a/demos/Jacobi.dem.sce b/demos/Jacobi.dem.sce
new file mode 100644
index 00000000..0b1618c4
--- /dev/null
+++ b/demos/Jacobi.dem.sce
@@ -0,0 +1,18 @@
+// Copyright (C) 2017 - 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: Ankit Raj
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+
+
+
+lines(0);
+
+global SCI2CHOME
+
+scilab2c(SCI2CHOME+"/tests/unit_tests/test_jacobi/scilabcode/main.sci",TMPDIR,SCI2CHOME+"/tests/unit_tests/test_jacobi/scilabcode");
+
diff --git a/demos/SVD.dem.sce b/demos/SVD.dem.sce
new file mode 100644
index 00000000..d466964a
--- /dev/null
+++ b/demos/SVD.dem.sce
@@ -0,0 +1,20 @@
+// Copyright (C) 2017 - 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: Sandeep Gupta
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+
+
+lines(0);
+
+global SCI2CHOME
+
+scilab2c(SCI2CHOME+"tests/unit_tests/testLinearAlgebra/testsvd/testsvd.sci", TMPDIR);
+
+editor(TMPDIR+"/main.c");
+
+
diff --git a/demos/analogFilter.dem.sce b/demos/analogFilter.dem.sce
new file mode 100644
index 00000000..674c9543
--- /dev/null
+++ b/demos/analogFilter.dem.sce
@@ -0,0 +1,18 @@
+// Copyright (C) 2017 - 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: Ankit Raj
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+//
+
+
+
+lines(0);
+
+global SCI2CHOME
+
+scilab2c(SCI2CHOME+"/tests/unit_tests/test_analogFilters/scilabcode/main.sci",TMPDIR,SCI2CHOME+"/tests/unit_tests/test_analogFilters/scilabcode");
diff --git a/demos/scilab2c.dem.gateway.sce b/demos/scilab2c.dem.gateway.sce
index e9a83bf0..c1031048 100644
--- a/demos/scilab2c.dem.gateway.sce
+++ b/demos/scilab2c.dem.gateway.sce
@@ -16,10 +16,10 @@ subdemolist = ["Trigonometric Identity" , "TrigonometricIdentity.dem.sce";
"Linear Regression" , "LinearRegression.dem.sce";
"Symbols", "Symbols.dem.sce";
"High Pass Filter", "Filter.dem.sce";
-<<<<<<< HEAD
- ];
-
-subdemolist(:,2) = demopath + subdemolist(:,2);
+ "Jacobi functions","Jacobi.dem.sce";
+ "Analog Filters","analogFilter.dem.sce";
+ "String Functions","string.dem.sce";
+ "Filter Responses","FilterResponse.dem.sce";
=======
"Arduino blink", "blink.dem.sce";
"Arduino digital input", "digital_in.dem.sce";
@@ -30,4 +30,4 @@ subdemolist(:,2) = demopath + subdemolist(:,2);
];
subdemolist(:,2) = demopath + subdemolist(:,2);
->>>>>>> 9e5793a7b05b23e6044a6d7a9ddd5db39ba375f0
+
diff --git a/demos/string.dem.sce b/demos/string.dem.sce
new file mode 100644
index 00000000..db90905e
--- /dev/null
+++ b/demos/string.dem.sce
@@ -0,0 +1,16 @@
+// Copyright (C) 2017 - 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: Ankit Raj
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+//
+
+lines(0);
+
+global SCI2CHOME
+
+scilab2c(SCI2CHOME+"/tests/unit_tests/test_string/scilabcode/main.sci",TMPDIR,SCI2CHOME+"/tests/unit_tests/test_string/scilabcode");