How to sum matrices together when within a structure
3 次查看(过去 30 天)
显示 更早的评论
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?
0 个评论
采纳的回答
Bruno Luong
2019-8-30
编辑:Bruno Luong
2019-8-30
linear_RL_broadband = sum(cat(3,linear.linear_RL_sum),3)
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Structures 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!