Extract data at regular intervals
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Dirk
am 21 Jun. 2013
Kommentiert: B Jadav
am 23 Jul. 2020
Hi There,
I have 2 columns of data, time and concentration. The time data are at intervals of about 5 seconds and there is a corresponding concentration measurement at each time. There are about 20,000 time measurements and I want to reduce this to a more manageable amount. How can I obtain say every 10th time x concentration value?
Thanks
0 Kommentare
Akzeptierte Antwort
Wayne King
am 21 Jun. 2013
Bearbeitet: Wayne King
am 21 Jun. 2013
Are you asking for just
X = ones(2e4,2);
Y = X(1:10:end,:);
Y is a two-column matrix containing every 10-th measurement (or measurements taken every 50 seconds).
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Statistics and Machine Learning 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!