diff options
author | Jorawar Singh | 2017-07-16 22:17:43 +0530 |
---|---|---|
committer | Jorawar Singh | 2017-07-16 22:36:51 +0530 |
commit | d9d92203ea349d5eb44c0edc5565d827322caabe (patch) | |
tree | 9bf874443e6e5a8ccd8fba3f5918297d95a194e8 /demos/Filters | |
parent | ce5c0f9d407d533364e9e7adc81e4d338e031383 (diff) | |
download | scilab2c-d9d92203ea349d5eb44c0edc5565d827322caabe.tar.gz scilab2c-d9d92203ea349d5eb44c0edc5565d827322caabe.tar.bz2 scilab2c-d9d92203ea349d5eb44c0edc5565d827322caabe.zip |
Toolbox merge, RPI demos and structured demos
Diffstat (limited to 'demos/Filters')
-rw-r--r-- | demos/Filters/Filter.dem.sce | 21 | ||||
-rw-r--r-- | demos/Filters/FilterResponse.dem.sce | 18 | ||||
-rw-r--r-- | demos/Filters/Filters.dem.gateway.sce | 19 | ||||
-rw-r--r-- | demos/Filters/analogFilter.dem.sce | 18 |
4 files changed, 76 insertions, 0 deletions
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"); |