summaryrefslogtreecommitdiff
path: root/2.3-1/tests/unit_tests/double/test_Expm.sci
blob: a0a1b13717bfb6351d75b0528553b7ffae136893 (plain)
1
2
3
4
5
6
7
8
9
function test_Expm()
 b = [1 2 3 4 ; 5 6 7 8 ; 9 10 11 12 ; 13 14 15 16];
 c = b*%i ;

 disp(expm(b));
 disp(expm(c));


endfunction