answersLogoWhite

0

Matrix addition of a 33 matrix?

Updated: 12/24/2022
User Avatar

Wiki User

13y ago

Best Answer

Fix 33 table changes : macierz1[][],macierz2[][],... and its size (write size to brackets)

Fix a matrix to result : wynik[][], and int i,j.

for(i=0;i<size_of_your_matrix;i++)

for (i=0;i<size_of_your_matrix;i++)

wynik[i][j]=macierz1[i][j]+...+macierz33[i][j];

Or instead of 33 changes: macierz[33][size][size]

for(k=0;k<33;k++)

for(i=0;i<size_of_your_matrix;i++)

for (i=0;i<size_of_your_matrix;i++)

wynik[i][j]=wynik[k][i][j]+macierz[k][i][j];

(dont forget about initializing wynik as 0 in 2nd case)

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Matrix addition of a 33 matrix?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Are matrix addition and matrix multiplication commutative?

Matrix addition is commutative if the elements in the matrices are themselves commutative.Matrix multiplication is not commutative.


If properties of matrix addition let A B C D the m n matrix then 1 A plus B B plus A?

Yes. Matrix addition is commutative.


C Matrix addition program?

How we can addition Two Matrix plz send coding in C language mahesh dhanotiya astah_mahesh@rediff.com how i can built a square matrix in c,


Write a program to multiply 33 matrix.?

write a program to multily 3*3 matrix.


What is matrix system?

A matrix is a rectangular array of elements - usually numbers. These, together with rules governing their addition and multiplication make up matrix algebra or system.


Can a matrix with dimensions of 2 X 4 be added to another matrix with dimensions of 2 X 5?

No. Matrix addition (or subtraction) is defined only for matrices of the same dimensions.


Can a matrix with dimensions of 4 X 5 be added to another matrix with dimensions of 5 X 3?

No. Matrix addition (or subtraction) is defined only for matrices of the same dimensions.


What is the order of The Matrix?

The Matrix The Matrix Reloaded The Matrix Revolutions


Could there be an identity matrix for matrix addition similar to the additive identity for the set of real numbers?

i dont even flucking know


What is the order of the matrix films?

There are three Matrix movies: The Matrix, The Matrix Reloaded, and The Matrix Revolutions. There are also a series of short animated films called The Animatrix. All movies on TopRater: toprater.com/en/movies/objects/2867535-the-matrix-1999


What type of matrix is a vector?

Vector matrix has both size and direction. There are different types of matrix namely the scalar matrix, the symmetric matrix, the square matrix and the column matrix.


What is idempotent matrix?

An idempotent matrix is a matrix which gives the same matrix if we multiply with the same. in simple words,square of the matrix is equal to the same matrix. if M is our matrix,then MM=M. then M is a idempotent matrix.