How to sum matrices together when within a structure
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Charlotte Findlay
el 30 de Ag. de 2019
Comentada: Charlotte Findlay
el 30 de Ag. de 2019
I have 118 matrices (picture is an example of just four) held in a column called 'linear_RL_sum' within a structure called 'linear'. All of these matrix are the same size (5396 x 5396) and I want to sum these together to have a single matrix called 'linear_RL_broadband' of size 5396 x 5396 in size. How would I go about this?
![Matrix.PNG](https://www.mathworks.com/matlabcentral/answers/uploaded_files/236405/Matrix.png)
0 comentarios
Respuesta aceptada
Bruno Luong
el 30 de Ag. de 2019
Editada: Bruno Luong
el 30 de Ag. de 2019
linear_RL_broadband = sum(cat(3,linear.linear_RL_sum),3)
Más respuestas (0)
Ver también
Categorías
Más información sobre Structures 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!