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

function mainfunction()

//test tanh

disp (tanh(7/10));
disp (tanh(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 (tanh(c))
disp (tanh(d))

endfunction