multiply an array of scalars by a 3D matrix
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mireia Boneta Camí
el 10 de Oct. de 2020
Comentada: Ameer Hamza
el 10 de Oct. de 2020
I have a vector 10x1 and a 3D matrix NxNx10, and what I want to do is to multiply every dimension of the matrix (the 10 of them) by every scalar of the vector. I mean every of the 10 dimensions by a different scalar of the vector. Do you know if it exists a way to do it without using fors?
0 comentarios
Respuesta aceptada
Ameer Hamza
el 10 de Oct. de 2020
Editada: Ameer Hamza
el 10 de Oct. de 2020
If you are using a recent version of MATLAB with implicit expansion enabled
A; % 10x1 array
M; % NxNx10 array
M_new = M.*reshape(A, 1, 1, []);
on older releases
M_new = bsxfun(@times, M, reshape(A, 1, 1, []))
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrices and Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!