Clear Filters
Clear Filters

Definition of fiter in data by text in colomn

1 view (last 30 days)
hello,
I would like to ask you for advice on the filter. I need to define a basic filter.
Filter all rows labeled "P1" in column 4.
data file contain more than mil rows with P1-P20 values
I tried
Data_P1=Data(Data(:,4)=="P1",:)
but it's bad
thank you

Accepted Answer

KSSV
KSSV on 26 Aug 2022
idx = strcmp(Data.(4),'P1') ;
T1 = T(idx,:) ;

More Answers (0)

Categories

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

Community Treasure Hunt

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

Start Hunting!