a | Vektor, d.h. eindimensionales Array |
p | Gleitkommazahl |
<html>
<head>
<script src="taramath.js"></script>
</head>
<body>
<textarea id="output"></textarea>
<script>
var a = [1, 2, 4, 2];
var c = LinearAlgebra.vector_norm(a, 2);
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, -4, 2];
var c = LinearAlgebra.vector_norm(a, -1);
Print.init("output");
Print.object(c);
</script>
</body>
</html>