Multiplying 3D array to 2D matrix error
Afficher commentaires plus anciens
Hi, I am trying to multiply a 72*51*51 3D array with a 51*51 2D matrix elementwise. How do I go about this using a for loop?
Thank you.
Réponses (1)
If A is your 72*52*52 array and B is your 52*52 matrix, then:
result = A .* repmat(permute(B,[3 1 2]),[size(A,1) 1 1]);
No need for a for loop.
Catégories
En savoir plus sur Matrices and Arrays dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!