summaryrefslogtreecommitdiff
path: root/src/Scilab2C/SCI2CTests/Mes_tests/elementary Functions/mainfunctionATan2.sci
blob: fa8d0a16da3f346a3c5488edf4bae1b5c2df4484 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//SCI2C: DEFAULT_PRECISION= DOUBLE

function mainfunction()

//test atan2


disp (atan(7,2));

c=[4 2 3 ;8 8 4; 3 4 5]
d=[2 3 7 ;2 4 4; 1 3 4]
disp (atan(c,d))

endfunction