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

function mainfunction()

//test tan

disp (tan(7/10));
disp (tan(2+11*%i))

c=[1 2 3 ;8 8 4; 3 4 5]
d=[1 2 3+3*%i ;8 8-1*%i 4; 3+4*%i 4 5]

disp (tan(c))
disp (tan(d))

endfunction