summaryrefslogtreecommitdiff
path: root/tests/unit_tests/test_double_log.sci
blob: b5790f14efd42bdbca1c6a93f358be4ef70c7acf (plain)
1
2
3
4
5
6
7
8
9
10
11
function test_double_log()
  d0 = %pi
  d2 = [1 2 3 4 ; 4 5 6 8 ; 9 10 11 12 ; 13 14 15 16]
  z0 = d0 + %i * d0
  z2 = d2 + %i * d2
  
  disp(log(d0));
  disp(log(d2));
  disp(log(z0));
  disp(log(z2));
endfunction