answersLogoWhite

0

I don't know the code, so I can't give it to you. But the algorithm is simple.

Matrices are usually stored as 2 dimensional arrays. Say M and N.

Then you make a loop, any loop, that goes through each row, during each loop, another loop will go over every single column (so row 1, col 1, then row 1, col 2, then etc.) Each time, the loop goes into row i and column j, add the entries of that row and column from M and N, (or M i,j + N i,j) and let it be the i,j's entry of the sum matrix.

Do the code yourself.

User Avatar

Wiki User

13y ago

Still curious? Ask our experts.

Chat with our AI personalities

BlakeBlake
As your older brother, I've been where you are—maybe not exactly, but close enough.
Chat with Blake
ProfessorProfessor
I will give you the most educated answer.
Chat with Professor
EzraEzra
Faith is not about having all the answers, but learning to ask the right questions.
Chat with Ezra

Add your answer:

Earn +20 pts
Q: C program for addition of two matrices?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

Program to display multiplication of two matrix?

The matrix multiplication in c language : c program is used to multiply matrices with two dimensional array. This program multiplies two matrices which will be entered by the user.


What is algorithm to multiply two matrices?

a,b,c,d,


Is the set of all 2x2 invertible matrices a subspace of all 2x2 matrices?

I assume since you're asking if 2x2 invertible matrices are a "subspace" that you are considering the set of all 2x2 matrices as a vector space (which it certainly is). In order for the set of 2x2 invertible matrices to be a subspace of the set of all 2x2 matrices, it must be closed under addition and scalar multiplication. A 2x2 matrix is invertible if and only if its determinant is nonzero. When multiplied by a scalar (let's call it c), the determinant of a 2x2 matrix will be multiplied by c^2 since the determinant is linear in each row (two rows -> two factors of c). If the determinant was nonzero to begin with c^2 times the determinant will be nonzero, so an invertible matrix multiplied by a scalar will remain invertible. Therefore the set of all 2x2 invertible matrices is closed under scalar multiplication. However, this set is not closed under addition. Consider the matrices {[1 0], [0 1]} and {[-1 0], [0 -1]}. Both are invertible (in this case, they are both their own inverses). However, their sum is {[0 0], [0 0]}, which is not invertible because its determinant is 0. In conclusion, the set of invertible 2x2 matrices is not a subspace of the set of all 2x2 matrices because it is not closed under addition.


Write a c program for matrix addition using function?

#include<


How can you tell whether two matrices can be added?

If both matrices have the same number of columns and rows ex: {1 2 3 4} can not be added with {5 4} b/c they dont have the same amount of numbers