Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjs/9.3.2/math.js"></script>
<body>
<h2>JavaScript</h2>
<p>Subtraction matrices with math.js</p>
<div id="demo"></div>
<script>
const mA = math.matrix([[1, 2], [3, 4], [5, 6]]);
const mB = math.matrix([[1,-1], [2,-2], [3,-3]]);
// Matrix Subtraction
const matrixSub = math.subtract(mA, mB);
// Result [ [0, 3], [1, 6], [2, 9] ]
document.getElementById("demo").innerHTML = matrixSub;
</script>
</body>
<!-- Mirrored from www.w3schools.com/ai/tryit.asp?filename=tryai_matrix_sub by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 16:51:32 GMT -->
</html>