Program to calculate the subtraction of 2 matricesExplanationIn this program, we need to subtract two matrices and print the resulting matrix. Subtraction of two matrices:Matrix B can be subtracted from matrix A or vice versa if and only if they have same dimensions that are, the same number of rows and columns. It is not possible to subtract a 2 � 3 matrix from a 3 � 2 matrix. Subtraction of two matrices can be performed by subtracting their corresponding elements as Subtraction of two matrices can be performed by looping through the first and second matrix. Calculating the difference between their corresponding elements and store the result in the third matrix. Algorithm
SolutionPythonOutput: Subtraction of two matrices: 2 5 3 1 1 0 0 1 2 COutput: Subtraction of two matrices: 2 5 3 1 1 0 0 1 2 JAVAOutput: Subtraction of two matrices: 2 5 3 1 1 0 0 1 2 C#Output: Subtraction of two matrices: 2 5 3 1 1 0 0 1 2 PHPOutput: Subtraction of two matrices: 2 5 3 1 1 0 0 1 2 Next Topic# |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India