Signal processing database separation

Hello everyone,
I have signal dataset 3173 rows and 2041 columns. In column 2041 they are numbers "0","1" and "2". These numbers are the classification of something. How can I obtain all rows and all columns which are "0" ? I will be grateful if you could help me.

Answers (1)

rows_num=find(dataset(:,2041)==0);
Maybe you have asked a similar question before ?? The column number is definitely 2041

2 Comments

Yes, this code finds the rows which including "0" , yet it couldn't show the columns of the rows.
Hello you are working on 2041 columns number.
"In column 2041 they are numbers "0","1" and "2".
The coulmn number is same for all rows data, which is 2041

Sign in to comment.

Categories

Find more on Signal Processing Toolbox in Help Center and File Exchange

Asked:

on 18 Dec 2020

Edited:

on 18 Dec 2020

Community Treasure Hunt

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

Start Hunting!