accessing the first column of each cell ?

9 ビュー (過去 30 日間)
Abbi Hashem
Abbi Hashem 2018 年 12 月 9 日
コメント済み: madhan ravi 2018 年 12 月 9 日
lets say I have a cell matrix that was created with 2000 cells each is a 6 by 7 matrix . I want to acces the 7th column of each of these cells and store them in 200 matricies as well. How can I do that ?
Next, I want to solve a linear equation with the right hand side being the 2000 vectors that I have exracted and the left hand side being the 6 by 6 matricies, and of course i should obtain 2000 values for x's.
Any help is appreciated please
  2 件のコメント
madhan ravi
madhan ravi 2018 年 12 月 9 日
"200 matricies as well"
what??
Abbi Hashem
Abbi Hashem 2018 年 12 月 9 日
2000 sry

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

回答 (1 件)

madhan ravi
madhan ravi 2018 年 12 月 9 日
編集済み: madhan ravi 2018 年 12 月 9 日
Only first part is answered:
c=cell(1,2000);
for i = 1:2000 % -> numel(cellmatrix)
c{i}=cellmatrix{i}(:,1); % change 1 to 7 if you want to extract 7th column
end
celldisp(c) % -> first columns extracted from 2000 cells
  2 件のコメント
Abbi Hashem
Abbi Hashem 2018 年 12 月 9 日
thank you
madhan ravi
madhan ravi 2018 年 12 月 9 日
Anytime :) , if you got the answer to your question make sure to accept the answer else let know what's additionally required.

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by