summaryrefslogtreecommitdiff
path: root/2.3-1/tests/unit_tests/double/test_Det.sci
blob: cf923152d76ec61f18befaafcd4fbe18b49b9c86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function test_Det()

	a = [1 2 3; 4 %pi 5; 4.5 -3 2];
	disp(det(a));

	b = %i * [1 2 3; 4 %pi 5; 4.5 -3 2];
	disp(det(b));


	disp(det(5));

	disp(det(%i));
endfunction