diff options
Diffstat (limited to 'demos/Brijesh_Demos/test_moment.sci')
-rw-r--r-- | demos/Brijesh_Demos/test_moment.sci | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/demos/Brijesh_Demos/test_moment.sci b/demos/Brijesh_Demos/test_moment.sci new file mode 100644 index 0000000..35e0d7a --- /dev/null +++ b/demos/Brijesh_Demos/test_moment.sci @@ -0,0 +1,14 @@ +function test_moment + disp('Datatype: Double'); + i1 = [1 2 3; 4 5 6]; + o1 = moment(i1,1,'r'); + disp(o1); + disp('Datatype: float'); + i2 = float([1 2 3; 4 5 6]); + o2 = moment(i2,1,'r'); + disp(o2); + disp('Datatype: Double Complex'); + i3 = [0 %i 3+4*%i;%i 5+%i 6+%i]; + o3 = moment(i3,1,'r'); + disp(o3); +endfunction |