From 550bca9f6e005872e654bc96b0b477cf502d814f Mon Sep 17 00:00:00 2001
From: Jorawar Singh
Date: Sun, 16 Jul 2017 22:17:43 +0530
Subject: Toolbox merge, RPI demos and structured demos

---
 demos/Filters/Filter.dem.sce          | 21 +++++++++++++++++++++
 demos/Filters/FilterResponse.dem.sce  | 18 ++++++++++++++++++
 demos/Filters/Filters.dem.gateway.sce | 19 +++++++++++++++++++
 demos/Filters/analogFilter.dem.sce    | 18 ++++++++++++++++++
 4 files changed, 76 insertions(+)
 create mode 100644 demos/Filters/Filter.dem.sce
 create mode 100644 demos/Filters/FilterResponse.dem.sce
 create mode 100644 demos/Filters/Filters.dem.gateway.sce
 create mode 100644 demos/Filters/analogFilter.dem.sce

(limited to 'demos/Filters')

diff --git a/demos/Filters/Filter.dem.sce b/demos/Filters/Filter.dem.sce
new file mode 100644
index 00000000..100b37b3
--- /dev/null
+++ b/demos/Filters/Filter.dem.sce
@@ -0,0 +1,21 @@
+//
+// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+// Copyright (C) 2010-2010 - DIGITEO - Bruno JOFRET
+//
+// 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
+//
+//
+lines(0);
+
+global SCI2CHOME
+editor([SCI2CHOME+"/tests/unit_tests/test004_Filter/scilabcode/main.sci";
+        SCI2CHOME+"/tests/unit_tests/test004_Filter/scilabcode/high_pass.sci"]);
+
+scilab2c(SCI2CHOME+"/tests/unit_tests/test004_Filter/scilabcode/main.sci", TMPDIR, SCI2CHOME+"/tests/unit_tests/test004_Filter/scilabcode");
+
+editor([TMPDIR+"/main.c";
+        TMPDIR+"/d2d0d0d0high_passd2.c"]);
diff --git a/demos/Filters/FilterResponse.dem.sce b/demos/Filters/FilterResponse.dem.sce
new file mode 100644
index 00000000..7104836d
--- /dev/null
+++ b/demos/Filters/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/Filters/Filters.dem.gateway.sce b/demos/Filters/Filters.dem.gateway.sce
new file mode 100644
index 00000000..274d0e4f
--- /dev/null
+++ b/demos/Filters/Filters.dem.gateway.sce
@@ -0,0 +1,19 @@
+// 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: Jorawar Singh, Sandeep Gupta
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+
+
+subdemolist = ["High Pass Filter", "Filter.dem.sce";
+              "Analog Filters","analogFilter.dem.sce";
+		      "Filter Responses","FilterResponse.dem.sce";
+              ];
+
+global SCI2CHOME;
+subdemolist(:,2) = SCI2CHOME + "/demos/Filters/"+ subdemolist(:,2);
diff --git a/demos/Filters/analogFilter.dem.sce b/demos/Filters/analogFilter.dem.sce
new file mode 100644
index 00000000..674c9543
--- /dev/null
+++ b/demos/Filters/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");
-- 
cgit