Multidimensional array multiplication issue
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I have to matrices. Impulse = 32 by 32 , residual = 5021 by 32. I want each element in the columns in impulse to be multiplied with all elements of residual. This will be repeated for second column and added to the first. I want this for all the columns, with a loop. Please suggest...
2 comentarios
KL
el 22 de Oct. de 2017
what do you mean by "each element in the columns in impulse to be multiplied with all elements of residual"?
residual has 5021 rows and 32 columns. Do you want to create a product of all these elements?
Respuestas (1)
KL
el 22 de Oct. de 2017
It's a simple matrix multiplication, isn't it?
impulse_matrix = rand(32,32);
residue_matrix = rand(5021,32);
mult_result = residue_matrix*impulse_matrix;
12 comentarios
Raisul Islam
el 24 de Oct. de 2017
Editada: Raisul Islam
el 25 de Oct. de 2017
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!