Add to Each Element in an Array
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Michaela Wood
el 27 de Abr. de 2018
Respondida: Walter Roberson
el 27 de Abr. de 2018
I know this is quite simple but I am drawing a blank on how to do it. I have an array that is titled t_yr and is (84x30x30), I need to add 120 to each element in the third dimension. Thank you in advance.
0 comentarios
Respuesta aceptada
Walter Roberson
el 27 de Abr. de 2018
There is no difference between adding to each element in the third dimension compared to adding to every element. Not unless you meant something like adding 120 times the page number.
new_t_yr = bsxfun(@plus, t_yr, 120*reshape(1:size(t_yr,3), 1, 1, []));
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Shifting and Sorting Matrices 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!