diff options
author | Brijeshcr | 2017-07-28 21:13:41 +0530 |
---|---|---|
committer | Brijeshcr | 2017-07-28 21:13:41 +0530 |
commit | f321ea4dad9af5e029f39bb5b2cb6f359ecc8afe (patch) | |
tree | b662a9a3ad35fbaa7220a9b48b2c3187a394ec77 | |
parent | be665fa018032441e5fa9352962286d96303e33c (diff) | |
download | scilab2c-f321ea4dad9af5e029f39bb5b2cb6f359ecc8afe.tar.gz scilab2c-f321ea4dad9af5e029f39bb5b2cb6f359ecc8afe.tar.bz2 scilab2c-f321ea4dad9af5e029f39bb5b2cb6f359ecc8afe.zip |
Test files added
-rw-r--r-- | jar/scilab_en_US_help.jar | bin | 11210 -> 11210 bytes | |||
-rw-r--r-- | tests/unit_tests/inter.sce | 11 | ||||
-rw-r--r-- | tests/unit_tests/power.sce | 5 | ||||
-rw-r--r-- | tests/unit_tests/test_isreal.sce | 6 |
4 files changed, 22 insertions, 0 deletions
diff --git a/jar/scilab_en_US_help.jar b/jar/scilab_en_US_help.jar Binary files differindex 5e1cb051..3d0a1e69 100644 --- a/jar/scilab_en_US_help.jar +++ b/jar/scilab_en_US_help.jar diff --git a/tests/unit_tests/inter.sce b/tests/unit_tests/inter.sce new file mode 100644 index 00000000..b5a797d9 --- /dev/null +++ b/tests/unit_tests/inter.sce @@ -0,0 +1,11 @@ +//test for interp1 +function inter() + x=linspace(1,3,3) //declaring a 1-D array + disp(x) + y=x.^2 //values for y at equivalent value for x + disp(y) + xx=linspace(1,2,4) // new points for that we have too find values using interpolation + disp(xx) + yy1=interp1(x,y,xx) //calling interp1 + disp(yy1) +endfunction diff --git a/tests/unit_tests/power.sce b/tests/unit_tests/power.sce new file mode 100644 index 00000000..b83b2c91 --- /dev/null +++ b/tests/unit_tests/power.sce @@ -0,0 +1,5 @@ +//test for scilab function nextpow2 +function power() + x = nextpow2([127 5]) //calling nextpow2 + disp(x) +endfunction diff --git a/tests/unit_tests/test_isreal.sce b/tests/unit_tests/test_isreal.sce new file mode 100644 index 00000000..2d76f36a --- /dev/null +++ b/tests/unit_tests/test_isreal.sce @@ -0,0 +1,6 @@ +//test file for isreal function +function test_isreal() + a=10 // declare a varible and check it real or imaginary + y=isreal(a) // call for isreal + disp(y) // display output +endfunction |