Calculating a mean matrix of a cell array

3 ビュー (過去 30 日間)
CSCh
CSCh 2023 年 7 月 10 日
コメント済み: CSCh 2023 年 7 月 10 日
Hi,
I have a A=78757x1 cell, consiting of {125×15 double} matrices.
How can I calculate the mean of all (78757) matrixes, ( "element-by-element" for each matrix) so that I have a mean Matrix of 125*15 at the end. A contains also sometimes NaN entries.
Thanks,
Chris

採用された回答

Stephen23
Stephen23 2023 年 7 月 10 日
編集済み: Stephen23 2023 年 7 月 10 日
M = mean(cat(3,A{:}),3,'omitnan')

その他の回答 (1 件)

Paul
Paul 2023 年 7 月 10 日
Try
mean(cat(3,A{:}),3,'omitnan')
The omitnan flag will ignor the nan entries in the computation of the mean.
  1 件のコメント
CSCh
CSCh 2023 年 7 月 10 日
Thank you so much, Paul & Stephen.

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

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

製品


リリース

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by