How to use a loop to calculate m*n values for an mxn matrix?
Mostrar comentarios más antiguos
I have two matrices, both approximately 100x100, call them A and B. I am trying to multiply every element of matrix A by every element of matrix B and output these values to a third matrix. In reality, I am doing a little bit more than multiplication, but the operation itself isn't my problem. I am having trouble figuring out how to organize this within a loop.
Any suggestions are greatly appreciated!
1 comentario
Jan
el 27 de Sept. de 2013
As usual it would be helpful, if you post, what you have tried so far an explain, which problems occur.
Respuesta aceptada
Más respuestas (1)
Ilham Hardy
el 27 de Sept. de 2013
Editada: Ilham Hardy
el 27 de Sept. de 2013
Is it something like this?
A = [1 2 3 4; 5 6 7 8; 9 10 11 12];
B = [2 2 2 2; 3 3 3 3; 4 4 4 4];
>> C = A.*B
C =
2 4 6 8
15 18 21 24
36 40 44 48
2 comentarios
Ilham Hardy
el 27 de Sept. de 2013
Sorry, i didn't read your question carefully.
Could you elaborate more on the "a little bit more than multiplication" -part?
Perhaps a simple example of your matrix and the operation?
Categorías
Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!