diff options
author | Brijeshcr | 2017-07-27 18:29:25 +0530 |
---|---|---|
committer | Brijeshcr | 2017-07-27 18:29:25 +0530 |
commit | 4bd28238003609980b66edbd25dae9239a237843 (patch) | |
tree | 49c5f6b3e0bbf1d5ad8f4b432fbb2de5e9e77ffe /demos/Brijesh_Demos/test_addition.sci | |
parent | 07d9e48f562ecdfc20192c0af6cb06a413caf30e (diff) | |
download | scilab2c-4bd28238003609980b66edbd25dae9239a237843.tar.gz scilab2c-4bd28238003609980b66edbd25dae9239a237843.tar.bz2 scilab2c-4bd28238003609980b66edbd25dae9239a237843.zip |
Nanmin and Nanmean added
Diffstat (limited to 'demos/Brijesh_Demos/test_addition.sci')
-rw-r--r-- | demos/Brijesh_Demos/test_addition.sci | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/demos/Brijesh_Demos/test_addition.sci b/demos/Brijesh_Demos/test_addition.sci new file mode 100644 index 00000000..f70f0aff --- /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 |