Filter löschen
Filter löschen

Definition of fiter in data by text in colomn

1 Ansicht (letzte 30 Tage)
Marek Drliciak
Marek Drliciak am 26 Aug. 2022
Kommentiert: Marek Drliciak am 26 Aug. 2022
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

Akzeptierte Antwort

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

Weitere Antworten (0)

Kategorien

Mehr zu Signal Processing Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by