Conditional Indexing Using Specific Numbers in A Column

3 ビュー (過去 30 日間)
SRB
SRB 2020 年 5 月 17 日
回答済み: Jyotsna Talluri 2020 年 5 月 26 日
I have the following 2156 x 11 matrix (A). I have attached the matrix. I want to use column 11 to get all rows between 5001's and 6001's and put them in another matrix (B). I also want to get all the rows between 5001's and 1001's and put them in another matrix (C).
Below is a truncated version of column 11:
1001
0
0
0
0
0
0
5001
1001
0
0
0
0
0
5001
1001
0
0
0
0
5001
0
1001
0
0
0
0
5001
1001
0
0
0
0
5001
6001
.
.
.
  2 件のコメント
Jyotsna Talluri
Jyotsna Talluri 2020 年 5 月 25 日
Is first 5001 and last 6001 of 11th column to be considered ?
SRB
SRB 2020 年 5 月 25 日
Yes.

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

回答 (1 件)

Jyotsna Talluri
Jyotsna Talluri 2020 年 5 月 26 日
load('MyData.mat');
a=find(MyData(:,11)==5001);
b=find(MyData(:,11)==6001);
matrixA=MyData(a(1):b(end),:);

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by