diff options
author | Brijeshcr | 2017-07-28 21:15:34 +0530 |
---|---|---|
committer | Brijeshcr | 2017-07-28 21:15:34 +0530 |
commit | 4dbbef28f20d66f4d838a991e74311c921227ea2 (patch) | |
tree | 88bcb4910e1a000c37d227311af74f2cb32a203a /demos/Abhinav_Demos/row.sci | |
parent | f321ea4dad9af5e029f39bb5b2cb6f359ecc8afe (diff) | |
parent | 1f639242264252674aaec1b2726a4389eed9a7c0 (diff) | |
download | Scilab2C_fossee_old-4dbbef28f20d66f4d838a991e74311c921227ea2.tar.gz Scilab2C_fossee_old-4dbbef28f20d66f4d838a991e74311c921227ea2.tar.bz2 Scilab2C_fossee_old-4dbbef28f20d66f4d838a991e74311c921227ea2.zip |
Test files added
Diffstat (limited to 'demos/Abhinav_Demos/row.sci')
-rw-r--r-- | demos/Abhinav_Demos/row.sci | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/demos/Abhinav_Demos/row.sci b/demos/Abhinav_Demos/row.sci new file mode 100644 index 0000000..264b174 --- /dev/null +++ b/demos/Abhinav_Demos/row.sci @@ -0,0 +1,25 @@ +// Test file for "Column" function for the data types double, float, double complex, string , uint16. +// All the below statements are added to initialize variables in different data types +//The function written doesn't work for string or character scalar as of now. + + +function Row() + a=[1,2,3,4; 5,6,7,8; 98,162,6587,0] + disp( isrow(a)) + disp('') + b= float(a) + disp(isrow(b)) + c= [1,2,34,5] + d= uint16(c) + disp(isrow(d)) + disp('') + f= [1;2;3;4] + disp(isrow(f)) + disp('') + u= uint16(c) + disp(isrow(u)) + disp('') + g= [%i*1; 7] + disp(isrow(g)) + disp('') +endfunction |