<html>
<head>
<script language="JavaScript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjs/3.2.1/math.js"></script>
</head>
<body>
<p id="result">loading result...</p>
<script>
var inverted = math.inv([[1,2,4],[3,4,5],[7,8,9]]);
document.getElementById("result").textContent = JSON.stringify(inverted);
</script>
</body>
</html>
This is what I have using math.js but I'm curious as to how i can do this without using a library.
Make sure matrix is "full" as in: no missing values.
The following code works on matrices with row count!=column count as well.