How to delete multiple rows of particular values?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Rachael Courts
el 20 de Mayo de 2020
Comentada: Rachael Courts
el 25 de Mayo de 2020
I have a matrix of 56298 x 15. Each column has a different header such as;
'UTC, startSeconds, duration...'
I am wanting to remove entire rows (for all columns) if the 'startSeconds' is equal to or lower than 2.37.
I've tried the 'find' function but I'm concerned that will only delete the value of the cell
2 comentarios
Respuesta aceptada
Mohammad Sami
el 20 de Mayo de 2020
Assuming that the variable is a matrix and the second column is startSeconds
rowstokeep = data(:,2) > 2.37;
data = data(rowstokeep,:);
3 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Tables en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
