フィルターのクリア

Substituting values to/from a cell array

1 回表示 (過去 30 日間)
RDG
RDG 2013 年 9 月 9 日
Suppose I have 2 cell array:
a={4 1 3 5; 5 5 1 4}
b={*5* 1 3; 1 3 4}
How can I substitute the values in cell array a(column 2:4) using values from b(column 1:3) that corresponds to the values in a(column 2 and 3)?
The resultant matrix should be this
resultant={4 1 3 4
5 5 1 3}
P/S: This is a very simple example from the code which I'm working on at the moment. I would like to know how to get about it and I will do the necessary adjustments. Thank you.

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 9 月 9 日
a={4 1 3 5; 5 5 1 4}
b={5 1 3; 1 3 4}
a(:,2:4)=b(:,1:3)
  3 件のコメント
Jan
Jan 2013 年 9 月 9 日
See: help cell. With curly braces the elements can have different size and type, while with square brackets, all elements must have the same type and matching dimensions (roughly spoken - there is an automatic type conversion also for convenience).
Amit Nambiar
Amit Nambiar 2013 年 9 月 9 日
Oh... now I understand...Thank you Jan Simon!

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

その他の回答 (0 件)

カテゴリ

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