JS Basic
JS Interview Programs
- JS Interview Programs
- JS Abundant Number
- JS Amicable Number
- JS Armstrong Number
- JS Average of N Numbers
- JS Automorphic Number
- JS Biggest of three numbers
- JS Binary to Decimal
- JS Common Divisors
- JS Composite Number
- JS Condense a Number
- JS Cube Number
- JS Decimal to Binary
- JS Decimal to Octal
- JS Disarium Number
- JS Even Number
- JS Evil Number
- JS Factorial of a Number
- JS Fibonacci Series
- JS GCD
- JS Happy Number
- JS Harshad Number
- JS LCM
- JS Leap Year
- JS Magic Number
- JS Matrix Addition
- JS Matrix Division
- JS Matrix Multiplication
- JS Matrix Subtraction
- JS Matrix Transpose
- JS Maximum Value of an Array
- JS Minimum Value of an Array
- JS Multiplication Table
- JS Natural Number
- JS Number Combination
- JS Odd Number
- JS Palindrome Number
- JS Pascalβs Triangle
- JS Perfect Number
- JS Perfect Square
- JS Power of 2
- JS Power of 3
- JS Pronic Number
- JS Prime Factor
- JS Prime Number
- JS Smith Number
- JS Strong Number
- JS Sum of Array
- JS Sum of Digits
- JS Swap Two Numbers
- JS Triangular Number
JavaScript Program to Perform Matrix Subtraction
Photo Credit to CodeToFun
π Introduction
Matrix subtraction is a fundamental operation in linear algebra and computer science.
Matrix subtraction involves subtracting each element of one matrix from the corresponding element of another matrix of the same order.
In this tutorial, we'll explore a javascript program that performs matrix subtraction.
In the provided javascript program, we'll perform matrix subtraction for 3x3 matrices as an example. You can easily modify the program to work with matrices of different sizes.
π Example
Let's dive into the javascript code that performs matrix subtraction.
// Function to perform matrix subtraction
function subtractMatrices(matrix1, matrix2) {
const resultMatrix = [];
for (let i = 0; i < matrix1.length; ++i) {
const row = [];
for (let j = 0; j < matrix1[i].length; ++j) {
row.push(matrix1[i][j] - matrix2[i][j]);
}
resultMatrix.push(row);
}
return resultMatrix;
}
// Function to display a matrix
function displayMatrix(matrix) {
for (let i = 0; i < matrix.length; ++i) {
console.log(matrix[i].join('\t'));
}
}
// Sample matrices for subtraction
const matrix1 = [
[5, 8, 2],
[7, 4, 9],
[3, 6, 1]
];
const matrix2 = [
[3, 1, 7],
[6, 9, 2],
[8, 5, 4]
];
// Perform matrix subtraction
const resultMatrix = subtractMatrices(matrix1, matrix2);
// Display matrices and result
console.log("Matrix 1:");
displayMatrix(matrix1);
console.log("\nMatrix 2:");
displayMatrix(matrix2);
console.log("\nResultant Matrix (Matrix1 - Matrix2):");
displayMatrix(resultMatrix);
π» Testing the Program
Feel free to replace the sample matrices with your own 3x3 matrices in the main function to test the program with different input.
Matrix 1: 5 8 2 7 4 9 3 6 1 Matrix 2: 3 1 7 6 9 2 8 5 4 Resultant Matrix (Matrix1 - Matrix2): 2 7 -5 1 -5 7 -5 1 -3
Run the program to see the result of the matrix subtraction.
π§ How the Program Works
- The program defines a function subtractMatrices that takes two matrices as input and returns their subtraction as a new matrix.
- It also defines a function displayMatrix to log a matrix to the console.
- Sample matrices matrix1 and matrix2 are defined, and matrix subtraction is performed using the subtractMatrices function.
- The result is displayed using the displayMatrix function.
π§ Understanding the Concept of Matrix Subtraction
Matrix subtraction is performed element-wise, subtracting the corresponding elements of one matrix from the elements of another matrix. The result is a new matrix of the same order.
In the provided example, the element in the first row and first column of the result matrix is obtained by subtracting the element in the first row and first column of Matrix 2 from the element in the first row and first column of Matrix 1, and so on.
π Conclusion
Matrix subtraction is a fundamental operation in linear algebra and computer science. This C program provides a practical implementation of matrix subtraction and serves as a foundation for more advanced matrix operations.
Feel free to incorporate and modify this code as needed for your specific use case. Happy coding!
π¨βπ» Join our Community:
Author
For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.
Buy me a coffee to make codetofun.com free for everyone.
Buy me a Coffee
If you have any doubts regarding this article (JavaScript Program to Perform Matrix Subtraction), please comment here. I will help you immediately.