フィルターのクリア

Store every n rows of a matrix in cell

4 ビュー (過去 30 日間)
pavlos
pavlos 2018 年 9 月 16 日
コメント済み: Gargi Majumdar 2021 年 8 月 21 日
Hello,
Please help me with the following:
Consider a 11808x1 matrix A.
I need to take every 96 elements and store them in cell B.
The first element of B would have 1-96 elements of A, the second would have 97-192, etc.
Thank you.
Best, Pavlos

採用された回答

Rik
Rik 2018 年 9 月 16 日
You can do that with the mat2cell function.
A=rand(11808,1);
k=96;
B=mat2cell(A,k*ones(size(A,1)/k,1),1);
Note that this doesn't work for splits that are not equal size (so a group size of 5 doesn't work).
  2 件のコメント
Rik
Rik 2018 年 9 月 19 日
Did this suggestion solve your problem? If so, please consider marking it as accepted answer. It will make it easier for other people with the same question to find an answer. If this didn't solve your question, please comment with what problems you are still having.
Gargi Majumdar
Gargi Majumdar 2021 年 8 月 21 日
I used the followig after using the above code
for i = 1:111;
F(:,i) = B{i,1};
end

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by