blob: 3143a88a4c0a94d3b4b34cb5465bcd04f7ee37e6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
function test_tand
disp('Datatype: Double');
i1 = [0 30 45; 60 80 120] ;
o1 = tand(i1);
disp(o1);
disp('Datatype: float');
i2 = float([0 30 45; 60 80 120]);
o2 = tand(i2);
disp(o2);
endfunction
|