フィルターのクリア

how to acces the content of a cell?

2 ビュー (過去 30 日間)
mahrukh jamil
mahrukh jamil 2016 年 10 月 15 日
回答済み: Walter Roberson 2016 年 10 月 15 日
Hello everyone, So i have never used a cell before. I have a cell of size (1x4800) and in the cell i have 4800, 2x5120 sized double vector. I want to go in to the cell and only access the 2nd row with all columns of the each cell content. i can say like for
cell_segment={2}
segment=cell_segment(2,:);
but the thing is i want to extract this for all the cell content (1x4800). How can I access the information in a loop? Thank you

採用された回答

Walter Roberson
Walter Roberson 2016 年 10 月 15 日
result = cellfun(@(C) C(2,:), cell_segment, 'Uniform', 0);
If you want to put those all together into a single matrix:
vertcat(result{:})

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by