Filter löschen
Filter löschen

how to split a dataset based on values from one column

1 Ansicht (letzte 30 Tage)
James Oxborrow
James Oxborrow am 31 Aug. 2018
Bearbeitet: madhan ravi am 31 Aug. 2018
I have this dataset and want to split it into two data sets based on wether the values in the 7th column (etd) are >25 or <25. how would i go about doing this?

Akzeptierte Antwort

madhan ravi
madhan ravi am 31 Aug. 2018
Bearbeitet: madhan ravi am 31 Aug. 2018
column7 = datasets(:,7)
for i = 1:numel(column7)
if column7(i) > 25
above25(i) = column7(i)
elseif column7(i) < 25
below25(i) = column7(i)
end
end
above25(above25==0)=[]
below25(below25==0)=[]
  4 Kommentare
madhan ravi
madhan ravi am 31 Aug. 2018
Bearbeitet: madhan ravi am 31 Aug. 2018
Upload the data file to test.
James Oxborrow
James Oxborrow am 31 Aug. 2018
donn't worry, i figured it out. Thanks

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Data Import from MATLAB 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