Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
matlab の基本的な質問です。セル配列 (2000*1) があり、それぞれに 4*4 行列が含まれています。2000 の 4*4 行列の平均を作成するにはどうすればよいですか。mean( cell arrary, 3) が機能すると思っていましたが、次のエラーが表示されます。
??? タイプ 'cell' の入力引数の関数またはメソッド 'sum' が定義されていません。
何か案は?
対応するすべての要素の 4x4 平均が必要な場合:
>> mean( cat(3, myCell{:}), 3 )