Delete Columns from a table where the 1st element in the column is a negative number?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
CHRISTOPHER MILLAR
am 4 Apr. 2019
Beantwortet: CHRISTOPHER MILLAR
am 4 Apr. 2019
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/212006/image.png)
I have a number of tables that contain sensor data from 8 channels and the 1st row in the table is the time this data was sampled at.
I want to delete all the data from the columns where the 1st element in the column is a negative number
How do I do this?
0 Kommentare
Akzeptierte Antwort
Guillaume
am 4 Apr. 2019
yourmatrix(:, yourmatrix(1, :) < 0) = []; %delete all rows of the columns whose 1st row is negative.
Your data would probably be better stored in a matlab table or even better a timetable. For that you'd have to transpose your matrix so that the time is in column format.
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Logical 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!