diff options
Diffstat (limited to 'demos')
-rw-r--r-- | demos/Arduino/Arduino.dem.gateway.sce | 22 | ||||
-rw-r--r-- | demos/Arduino/analog_in_out_volt.dem.sce (renamed from demos/analog_in_out_volt.dem.sce) | 0 | ||||
-rw-r--r-- | demos/Arduino/analog_out.dem.sce (renamed from demos/analog_out.dem.sce) | 0 | ||||
-rw-r--r-- | demos/Arduino/blink.dem.sce (renamed from demos/blink.dem.sce) | 0 | ||||
-rw-r--r-- | demos/Arduino/dc_motor.dem.sce (renamed from demos/dc_motor.dem.sce) | 0 | ||||
-rw-r--r-- | demos/Arduino/digital_in.dem.sce (renamed from demos/digital_in.dem.sce) | 0 | ||||
-rw-r--r-- | demos/Arduino/master_write.dem.sce (renamed from demos/master_write.dem.sce) | 0 | ||||
-rw-r--r-- | demos/Brijesh_Demos/Test_Add_SCE.sce | 4 | ||||
-rw-r--r-- | demos/Brijesh_Demos/Test_Addition.sci | 8 | ||||
-rw-r--r-- | demos/Brijesh_Demos/Test_Cross.sci | 44 | ||||
-rw-r--r-- | demos/Brijesh_Demos/Test_Erf.sci | 10 | ||||
-rw-r--r-- | demos/Brijesh_Demos/Test_Erfc.sci | 10 | ||||
-rw-r--r-- | demos/Brijesh_Demos/Test_Isreal.sci | 25 | ||||
-rw-r--r-- | demos/Brijesh_Demos/Test_Toeplitz.sci | 50 | ||||
-rw-r--r-- | demos/CT/CT.dem.gateway.sce | 18 | ||||
-rw-r--r-- | demos/CT/test_dct.dem.sce (renamed from demos/test_dct.dem.sce) | 0 | ||||
-rw-r--r-- | demos/CT/test_idct.dem.sce (renamed from demos/test_idct.dem.sce) | 0 | ||||
-rw-r--r-- | demos/Filters/Filter.dem.sce (renamed from demos/Filter.dem.sce) | 0 | ||||
-rw-r--r-- | demos/Filters/FilterResponse.dem.sce (renamed from demos/FilterResponse.dem.sce) | 0 | ||||
-rw-r--r-- | demos/Filters/Filters.dem.gateway.sce | 19 | ||||
-rw-r--r-- | demos/Filters/analogFilter.dem.sce (renamed from demos/analogFilter.dem.sce) | 0 | ||||
-rw-r--r-- | demos/LinearAlgebra/FULLRF.dem.sce (renamed from demos/FULLRF.dem.sce) | 0 | ||||
-rw-r--r-- | demos/LinearAlgebra/GIVENS.dem.sce (renamed from demos/GIVENS.dem.sce) | 0 | ||||
-rw-r--r-- | demos/LinearAlgebra/HESS.dem.sce (renamed from demos/HESS.dem.sce) | 0 | ||||
-rw-r--r-- | demos/LinearAlgebra/HOUSEHOLDER.dem.sce (renamed from demos/HOUSEHOLDER.dem.sce) | 0 | ||||
-rw-r--r-- | demos/LinearAlgebra/LinearAlgebra.dem.gateway.sce | 27 | ||||
-rw-r--r-- | demos/LinearAlgebra/NORM.dem.sce (renamed from demos/NORM.dem.sce) | 0 | ||||
-rw-r--r-- | demos/LinearAlgebra/QR.dem.sce (renamed from demos/QR.dem.sce) | 0 | ||||
-rw-r--r-- | demos/LinearAlgebra/ROWCOMP.dem.sce (renamed from demos/ROWCOMP.dem.sce) | 0 | ||||
-rw-r--r-- | demos/LinearAlgebra/SPEC.dem.sce (renamed from demos/SPEC.dem.sce) | 0 | ||||
-rw-r--r-- | demos/LinearAlgebra/SQROOT.dem.sce (renamed from demos/SQROOT.dem.sce) | 0 | ||||
-rw-r--r-- | demos/LinearAlgebra/SVA.dem.sce (renamed from demos/SVA.dem.sce) | 0 | ||||
-rw-r--r-- | demos/LinearAlgebra/SVD.dem.sce (renamed from demos/SVD.dem.sce) | 0 | ||||
-rw-r--r-- | demos/RPi/RPi.dem.gateway.sce | 17 | ||||
-rw-r--r-- | demos/RPi/test_wait_and_blink.dem.sce | 19 | ||||
-rw-r--r-- | demos/scilab2c.dem.gateway.sce | 37 |
36 files changed, 282 insertions, 28 deletions
diff --git a/demos/Arduino/Arduino.dem.gateway.sce b/demos/Arduino/Arduino.dem.gateway.sce new file mode 100644 index 00000000..417291ac --- /dev/null +++ b/demos/Arduino/Arduino.dem.gateway.sce @@ -0,0 +1,22 @@ +// 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, Yash Pratap Singh Tomar +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + + +subdemolist = ["Arduino blink", "blink.dem.sce"; + "Arduino digital input", "digital_in.dem.sce"; + "Arduino analog voltage i/o", "analog_in_out_volt.dem.sce"; + "Arduino analog output", "analog_out.dem.sce"; + "Arduino DC motor", "dc_motor.dem.sce"; + "Arduino Master write", "master_write.dem.sce"; + ]; + +global SCI2CHOME; +subdemolist(:,2) = SCI2CHOME + "/demos/Arduino/"+ subdemolist(:,2); diff --git a/demos/analog_in_out_volt.dem.sce b/demos/Arduino/analog_in_out_volt.dem.sce index ca6da611..ca6da611 100644 --- a/demos/analog_in_out_volt.dem.sce +++ b/demos/Arduino/analog_in_out_volt.dem.sce diff --git a/demos/analog_out.dem.sce b/demos/Arduino/analog_out.dem.sce index 65a1e279..65a1e279 100644 --- a/demos/analog_out.dem.sce +++ b/demos/Arduino/analog_out.dem.sce diff --git a/demos/blink.dem.sce b/demos/Arduino/blink.dem.sce index b01d3dae..b01d3dae 100644 --- a/demos/blink.dem.sce +++ b/demos/Arduino/blink.dem.sce diff --git a/demos/dc_motor.dem.sce b/demos/Arduino/dc_motor.dem.sce index 36c0badd..36c0badd 100644 --- a/demos/dc_motor.dem.sce +++ b/demos/Arduino/dc_motor.dem.sce diff --git a/demos/digital_in.dem.sce b/demos/Arduino/digital_in.dem.sce index 2eb4c3a0..2eb4c3a0 100644 --- a/demos/digital_in.dem.sce +++ b/demos/Arduino/digital_in.dem.sce diff --git a/demos/master_write.dem.sce b/demos/Arduino/master_write.dem.sce index cdf522db..cdf522db 100644 --- a/demos/master_write.dem.sce +++ b/demos/Arduino/master_write.dem.sce diff --git a/demos/Brijesh_Demos/Test_Add_SCE.sce b/demos/Brijesh_Demos/Test_Add_SCE.sce new file mode 100644 index 00000000..e250078d --- /dev/null +++ b/demos/Brijesh_Demos/Test_Add_SCE.sce @@ -0,0 +1,4 @@ +a = 1; +b = 5; +c = a+b; +disp(c); diff --git a/demos/Brijesh_Demos/Test_Addition.sci b/demos/Brijesh_Demos/Test_Addition.sci new file mode 100644 index 00000000..856ba63e --- /dev/null +++ b/demos/Brijesh_Demos/Test_Addition.sci @@ -0,0 +1,8 @@ +function Test_Addition() + a = 1; + b = 2; + d = float(b); + e = float(a) + c = e+d; + disp(c); +endfunction diff --git a/demos/Brijesh_Demos/Test_Cross.sci b/demos/Brijesh_Demos/Test_Cross.sci new file mode 100644 index 00000000..01206b3c --- /dev/null +++ b/demos/Brijesh_Demos/Test_Cross.sci @@ -0,0 +1,44 @@ +function Test_Cross + disp('Datatype: Double'); + i1 = [1 2;3 4;5 6]; + i2 = [7 8;9 10;11 12]; + o1 = cross(i1,i2); + disp(o1); + + disp('Datatype: DoubleComplex'); + i3 = [1+1*%i 2+2*%i;3+3*%i 4+4*%i;5+5*%i 6+6*%i]; + i4 = [7+7*%i 8+8*%i;9+9*%i 10+10*%i;11+11*%i 12+12*%i]; + o2 = cross(i3,i4); + disp(o2); + + disp('Float'); + i5 = float([1 2;3 4;5 6]); + i6 = float([7 8;9 10;11 12]); + o3 = cross(i5,i6); + disp(o3); + + disp('Datatype: uint8'); + i7 = uint8([1 2;3 4;5 6]); + i8 = uint8([7 8;9 10;11 12]); + o4 = cross(i7,i8); + disp(o4); + + disp('Datatype: int8'); + i9 = int8([1 2;3 4;5 6]); + i10 = int8([7 8;9 10;11 12]); + o5 = cross(i9,i10); + disp(o5); + + disp('Datatype: uint16'); + i11 = uint16([1 2;3 4;5 6]); + i12 = uint16([7 8;9 10;11 12]); + o6 = cross(i11,i12); + disp(o6); + + disp('Datatype: int16'); + i13 = int8([1 2;3 4;5 6]); + i14 = int8([7 8;9 10;11 12]); + o7 = cross(i13,i14); + disp(o7); + +endfunction diff --git a/demos/Brijesh_Demos/Test_Erf.sci b/demos/Brijesh_Demos/Test_Erf.sci new file mode 100644 index 00000000..42208f61 --- /dev/null +++ b/demos/Brijesh_Demos/Test_Erf.sci @@ -0,0 +1,10 @@ +function Test_Erf + disp('Datatype: Double'); + i1 = [1 2 .5; 7 .8 .9]; + o1 = erf(i1); + disp(o1); + disp('Datatype: float'); + i2 = float([1 2 .5; 7 .8 .9]); + o2 = erf(i2); + disp(o2); +endfunction diff --git a/demos/Brijesh_Demos/Test_Erfc.sci b/demos/Brijesh_Demos/Test_Erfc.sci new file mode 100644 index 00000000..2ad8cfed --- /dev/null +++ b/demos/Brijesh_Demos/Test_Erfc.sci @@ -0,0 +1,10 @@ +function Test_Erfc + disp('Datatype: Double'); + i1 = [1 2 .5; 7 .8 .9]; + o1 = erfc(i1); + disp(o1); + disp('Datatype: float'); + i2 = float([1 2 .5; 7 .8 .9]); + o2 = erfc(i2); + disp(o2); +endfunction diff --git a/demos/Brijesh_Demos/Test_Isreal.sci b/demos/Brijesh_Demos/Test_Isreal.sci new file mode 100644 index 00000000..4846d31c --- /dev/null +++ b/demos/Brijesh_Demos/Test_Isreal.sci @@ -0,0 +1,25 @@ +function Test_Isreal + disp('Datatype: Double'); + i1 = [1 2 3]; + i2 = [1 2 3]; + o1 = isequal(i1,i2); + disp(o1); + + disp('Datatype: Float'); + i3 = float([4 5 6]); + i4 = float([4 5 6]); + o2 = isequal(i3,i4); + disp(o2); + + disp('Datatype: DoubleComplex'); + i5 = [%i*3 %i*3 %i*3]; + i6 = [%i*3 %i*3 %i*3]; + o3 = isequal(i5,i6); + disp(o3); + + disp('Datatype: uint16'); + i7 = uint16([4 5 6]); + i8 = uint16([4 5 6]); + o4 = isequal(i7,i8); + disp(o4); +endfunction diff --git a/demos/Brijesh_Demos/Test_Toeplitz.sci b/demos/Brijesh_Demos/Test_Toeplitz.sci new file mode 100644 index 00000000..6d1269ec --- /dev/null +++ b/demos/Brijesh_Demos/Test_Toeplitz.sci @@ -0,0 +1,50 @@ +function Test_Toeplitz() + disp('Datatype: Double'); + ai = [1 2 3 4]; + bi = [1 6 7 8]; + as1 = toeplitz(ai,bi); + disp(as1); + + disp('Datatype: Float'); + aid = float(ai); + bid = float(bi); + as2 = toeplitz(aid,bid); + disp(as2); + + disp('Datatype: uint8'); + aiu8 = uint8(ai); + biu8 = uint8(bi); + as3 = toeplitz(aiu8,biu8); + disp(as3); + + disp('Datatype: int8'); + ai8 = int8(ai); + bi8 = int8(bi); + as4= toeplitz(ai8,bi8); + disp(as4); + + disp('Datatype: uint16'); + aiu16 = uint16(ai); + biu16 = uint16(bi); + as5 = toeplitz(aiu16,biu16); + disp(as5); + + disp('Datatype: int16'); + ai16 = int16(ai); + bi16 = int16(bi); + as6 = toeplitz(ai16,bi16); + disp(as6); + + disp('Datatype: Double Complex'); + adc = [1+%i*1 2+%i*2 3+%i*3 4+%i*4]; + bdc = [1+%i*1 6+%i*6 7+%i*7 8+%i*8]; + as7 = toeplitz(adc,bdc); + disp(as7); + + disp('Datatype: Char'); + aic = ['a' 'b' 'c' 'd']; + bic = ['a' 'x' 'y' 'z']; + as9 = toeplitz(aic,bic); + disp(as9); + +endfunction diff --git a/demos/CT/CT.dem.gateway.sce b/demos/CT/CT.dem.gateway.sce new file mode 100644 index 00000000..1aba91e4 --- /dev/null +++ b/demos/CT/CT.dem.gateway.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: Jorawar Singh, Sandeep Gupta +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + + +subdemolist = ["Discrete Cosine Transform" , "test_dct.dem.sce"; + "Inverse Cosine Transform" , "test_idct.dem.sce"; + ]; + +global SCI2CHOME; +subdemolist(:,2) = SCI2CHOME + "/demos/CT/"+ subdemolist(:,2); diff --git a/demos/test_dct.dem.sce b/demos/CT/test_dct.dem.sce index b1b62475..b1b62475 100644 --- a/demos/test_dct.dem.sce +++ b/demos/CT/test_dct.dem.sce diff --git a/demos/test_idct.dem.sce b/demos/CT/test_idct.dem.sce index b1d33392..b1d33392 100644 --- a/demos/test_idct.dem.sce +++ b/demos/CT/test_idct.dem.sce diff --git a/demos/Filter.dem.sce b/demos/Filters/Filter.dem.sce index 100b37b3..100b37b3 100644 --- a/demos/Filter.dem.sce +++ b/demos/Filters/Filter.dem.sce diff --git a/demos/FilterResponse.dem.sce b/demos/Filters/FilterResponse.dem.sce index 7104836d..7104836d 100644 --- a/demos/FilterResponse.dem.sce +++ b/demos/Filters/FilterResponse.dem.sce 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/analogFilter.dem.sce b/demos/Filters/analogFilter.dem.sce index 674c9543..674c9543 100644 --- a/demos/analogFilter.dem.sce +++ b/demos/Filters/analogFilter.dem.sce diff --git a/demos/FULLRF.dem.sce b/demos/LinearAlgebra/FULLRF.dem.sce index 3aeeba20..3aeeba20 100644 --- a/demos/FULLRF.dem.sce +++ b/demos/LinearAlgebra/FULLRF.dem.sce diff --git a/demos/GIVENS.dem.sce b/demos/LinearAlgebra/GIVENS.dem.sce index 0ab2d2a7..0ab2d2a7 100644 --- a/demos/GIVENS.dem.sce +++ b/demos/LinearAlgebra/GIVENS.dem.sce diff --git a/demos/HESS.dem.sce b/demos/LinearAlgebra/HESS.dem.sce index 4c70d67b..4c70d67b 100644 --- a/demos/HESS.dem.sce +++ b/demos/LinearAlgebra/HESS.dem.sce diff --git a/demos/HOUSEHOLDER.dem.sce b/demos/LinearAlgebra/HOUSEHOLDER.dem.sce index 74474071..74474071 100644 --- a/demos/HOUSEHOLDER.dem.sce +++ b/demos/LinearAlgebra/HOUSEHOLDER.dem.sce diff --git a/demos/LinearAlgebra/LinearAlgebra.dem.gateway.sce b/demos/LinearAlgebra/LinearAlgebra.dem.gateway.sce new file mode 100644 index 00000000..ef99e531 --- /dev/null +++ b/demos/LinearAlgebra/LinearAlgebra.dem.gateway.sce @@ -0,0 +1,27 @@ +// 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 = ["Singular Value Decomposition", "SVD.dem.sce"; + "Singular Value Approximation", "SVA.dem.sce"; + "SQROOT", "SQROOT.dem.sce"; + "SPEC", "SPEC.dem.sce"; + "ROWCOMP","ROWCOMP.dem.sce"; + "QR Decomposition", "QR.dem.sce"; + "NORM type 2", "NORM.dem.sce"; + "HOUSEHOLDER","HOUSEHOLDER.dem.sce"; + "HESS", "HESS.dem.sce"; + "GIVENS Transformation", "GIVENS.dem.sce"; + "Full rank factorization","FULLRF.dem.sce"; + ]; + +global SCI2CHOME; +subdemolist(:,2) = SCI2CHOME + "/demos/LinearAlgebra/"+ subdemolist(:,2); diff --git a/demos/NORM.dem.sce b/demos/LinearAlgebra/NORM.dem.sce index 1de3feba..1de3feba 100644 --- a/demos/NORM.dem.sce +++ b/demos/LinearAlgebra/NORM.dem.sce diff --git a/demos/QR.dem.sce b/demos/LinearAlgebra/QR.dem.sce index 7d2fc1a3..7d2fc1a3 100644 --- a/demos/QR.dem.sce +++ b/demos/LinearAlgebra/QR.dem.sce diff --git a/demos/ROWCOMP.dem.sce b/demos/LinearAlgebra/ROWCOMP.dem.sce index 6557eb4c..6557eb4c 100644 --- a/demos/ROWCOMP.dem.sce +++ b/demos/LinearAlgebra/ROWCOMP.dem.sce diff --git a/demos/SPEC.dem.sce b/demos/LinearAlgebra/SPEC.dem.sce index 423c1520..423c1520 100644 --- a/demos/SPEC.dem.sce +++ b/demos/LinearAlgebra/SPEC.dem.sce diff --git a/demos/SQROOT.dem.sce b/demos/LinearAlgebra/SQROOT.dem.sce index 676d5e52..676d5e52 100644 --- a/demos/SQROOT.dem.sce +++ b/demos/LinearAlgebra/SQROOT.dem.sce diff --git a/demos/SVA.dem.sce b/demos/LinearAlgebra/SVA.dem.sce index 3ced74f5..3ced74f5 100644 --- a/demos/SVA.dem.sce +++ b/demos/LinearAlgebra/SVA.dem.sce diff --git a/demos/SVD.dem.sce b/demos/LinearAlgebra/SVD.dem.sce index aa35cce9..aa35cce9 100644 --- a/demos/SVD.dem.sce +++ b/demos/LinearAlgebra/SVD.dem.sce diff --git a/demos/RPi/RPi.dem.gateway.sce b/demos/RPi/RPi.dem.gateway.sce new file mode 100644 index 00000000..29d4c710 --- /dev/null +++ b/demos/RPi/RPi.dem.gateway.sce @@ -0,0 +1,17 @@ +// 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 = ["Wait and Blink","test_wait_and_blink.dem.sce"; + ]; + +global SCI2CHOME; +subdemolist(:,2) = SCI2CHOME + "/demos/RPi/"+ subdemolist(:,2); diff --git a/demos/RPi/test_wait_and_blink.dem.sce b/demos/RPi/test_wait_and_blink.dem.sce new file mode 100644 index 00000000..31396c60 --- /dev/null +++ b/demos/RPi/test_wait_and_blink.dem.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 +// + +lines(0); + +global SCI2CHOME + +scilab2c(SCI2CHOME + "/tests/unit_tests/test_RPi/wait_and_blink.sci", TMPDIR,SCI2CHOME + "/tests/unit_tests/test_RPi/", "All", "make" ,"RPi", "uno"); + +editor([TMPDIR+"/main.c"]); diff --git a/demos/scilab2c.dem.gateway.sce b/demos/scilab2c.dem.gateway.sce index bc158bfa..7e987879 100644 --- a/demos/scilab2c.dem.gateway.sce +++ b/demos/scilab2c.dem.gateway.sce @@ -12,36 +12,17 @@ demopath = get_absolute_file_path("scilab2c.dem.gateway.sce"); -subdemolist = ["Trigonometric Identity" , "TrigonometricIdentity.dem.sce"; +subdemolist =["Linear Algebra","LinearAlgebra/LinearAlgebra.dem.gateway.sce"; + "Arduino","Arduino/Arduino.dem.gateway.sce"; + "Cosine Transforms","CT/CT.dem.gateway.sce"; + "Filters","Filters/Filters.dem.gateway.sce"; + "Raspberry Pi","RPi/RPi.dem.gateway.sce"; + "Trigonometric Identity" , "TrigonometricIdentity.dem.sce"; "Linear Regression" , "LinearRegression.dem.sce"; "Symbols", "Symbols.dem.sce"; - "High Pass Filter", "Filter.dem.sce"; - "Jacobi functions","Jacobi.dem.sce"; - "Analog Filters","analogFilter.dem.sce"; - "Discrete Cosine Transform" , "test_dct.dem.sce"; - "Inverse Cosine Transform" , "test_idct.dem.sce"; - "String Functions","string.dem.sce"; - "Filter Responses","FilterResponse.dem.sce"; - "Singular Value Decomposition", "SVD.dem.sce"; - "Singular Value Approximation", "SVA.dem.sce"; - "SQROOT", "SQROOT.dem.sce"; - "SPEC", "SPEC.dem.sce"; - "ROWCOMP","ROWCOMP.dem.sce"; - "QR Decomposition", "QR.dem.sce"; - "NORM type 2", "NORM.dem.sce"; - "HOUSEHOLDER","HOUSEHOLDER.dem.sce"; - "HESS", "HESS.dem.sce"; - "GIVENS Transformation", "GIVENS.dem.sce"; - "Full rank factorization","FULLRF.dem.sce"; - "Arduino blink", "blink.dem.sce"; - "Arduino digital input", "digital_in.dem.sce"; - "Arduino analog voltage i/o", "analog_in_out_volt.dem.sce"; - "Arduino analog output", "analog_out.dem.sce"; - "Arduino DC motor", "dc_motor.dem.sce"; - "Arduino Master write", "master_write.dem.sce"; + "Jacobi functions","Jacobi.dem.sce"; + "String Functions","string.dem.sce"; "Ffilt coeff. of FIR low pass filter","ffilt.dem.sce"; "Design of FIR linear phase filters using freq. samping technique","fsfirlin.dem.sce"; - "Samples of sinc function","filt_sinc.dem.sce"; - ]; - + "Samples of sinc function","filt_sinc.dem.sce";] subdemolist(:,2) = demopath + subdemolist(:,2); |