フィルターのクリア

how to sum matrics inside a cell array?

2 ビュー (過去 30 日間)
Kobi
Kobi 2014 年 8 月 6 日
編集済み: Fatih 2014 年 8 月 6 日
i have 4 matrics inside a cell and i need to sum them all currenyly i use this:
R=R{1}+R{2}+R{3}+R{4}
the original R is a cell with 4 matrics

回答 (1 件)

Fatih
Fatih 2014 年 8 月 6 日
編集済み: Fatih 2014 年 8 月 6 日
Sorry, maybe I have not enough information. but methinks I understand you. if you want to sum all elements of matrix. please write matrix in this view.
R = [R1 R2 R3 R4];
%and after that
result = sum(sum(R));
if your matrixes arent same row lenght you cannot use this way.

カテゴリ

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

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by