How to sum matrices together when within a structure

3 ビュー (過去 30 日間)
Charlotte Findlay
Charlotte Findlay 2019 年 8 月 30 日
コメント済み: Charlotte Findlay 2019 年 8 月 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?
Matrix.PNG

採用された回答

Bruno Luong
Bruno Luong 2019 年 8 月 30 日
編集済み: Bruno Luong 2019 年 8 月 30 日
linear_RL_broadband = sum(cat(3,linear.linear_RL_sum),3)
  1 件のコメント
Charlotte Findlay
Charlotte Findlay 2019 年 8 月 30 日
Hi Bruno,
Think that worked! Thank you :)
Charlotte

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by