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_Erfc.sci | |
parent | 07d9e48f562ecdfc20192c0af6cb06a413caf30e (diff) | |
download | Scilab2C_fossee_old-4bd28238003609980b66edbd25dae9239a237843.tar.gz Scilab2C_fossee_old-4bd28238003609980b66edbd25dae9239a237843.tar.bz2 Scilab2C_fossee_old-4bd28238003609980b66edbd25dae9239a237843.zip |
Nanmin and Nanmean added
Diffstat (limited to 'demos/Brijesh_Demos/Test_Erfc.sci')
-rw-r--r-- | demos/Brijesh_Demos/Test_Erfc.sci | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/demos/Brijesh_Demos/Test_Erfc.sci b/demos/Brijesh_Demos/Test_Erfc.sci deleted file mode 100644 index 2ad8cfe..0000000 --- a/demos/Brijesh_Demos/Test_Erfc.sci +++ /dev/null @@ -1,10 +0,0 @@ -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 |