how to fill a matrix using the rows of another matrix

3 ビュー (過去 30 日間)
MA
MA 2021 年 9 月 12 日
回答済み: Salman Ahmed 2021 年 10 月 14 日
I have a matrix A of size 8540X18, there is a specific column in that matrix that its whenever the next row is less than the previous row, we need to extract all the rows before that row and store them in another matrix B and then store that matrix in a seperate data file. anybody can help with this?
  7 件のコメント
Walter Roberson
Walter Roberson 2021 年 9 月 13 日
idxBkpt = find( diff[0;A.GDALT]) < 0 );
MA
MA 2021 年 9 月 13 日
Thank you for the help, I tried it now and it works perfectly fine. but now since I am dealig with a huge data set and the blocks we are trying to extract are having diffrenet sizes, how can I implement that using mat2cell?

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

回答 (1 件)

Salman Ahmed
Salman Ahmed 2021 年 10 月 14 日
Hi manar,
From the comments, I understand that you wish to segregate your data into different cells whenever you hit peaks in your data. You could try the following operations on your data:
idx = find(diff([0;A.GDALT])<0); % Finding the breakpoints
B = mat2cell(A,[idx(1)-1;diff(idx);numel(A.GDALT)-idx(end)+1]); % Segregating the tables
Hope it solves your issue.

カテゴリ

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

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by