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!