A | Quadratische Matrix, d.h. zweidimensionales Array |
<html>
<head>
<script src="taramath.js"></script>
</head>
<body>
<textarea id="output"></textarea>
<script>
var A = [
[ 1, 3, -2],
[ 0, -2, 1],
[ 3, -1, 3]
];
var c = LinearAlgebra.det(A);
Print.init("output");
Print.object(c);
</script>
</body>
</html>
xxxxxxxxxx
<html>
<head>
<script src="taramath.js"></script>
</head>
<body>
<textarea id="output"></textarea>
<script>
var A = [
[ 1, 2, 3],
[ 4, 5, 6],
[ 7, 8, 9]
];
var c = LinearAlgebra.det(A);
Print.init("output");
Print.object(c);
</script>
</body>
</html>