How to delete multiple rows of particular values?

11 次查看(过去 30 天)
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

采纳的回答

Mohammad Sami
Mohammad Sami 2020-5-20
Assuming that the variable is a matrix and the second column is startSeconds
rowstokeep = data(:,2) > 2.37;
data = data(rowstokeep,:);
  3 个评论
Rachael Courts
Rachael Courts 2020-5-25
Hi Mohammad,
I attempted what you suggested but keep receiving this error
Rachael Courts
Rachael Courts 2020-5-25
I just worked it out! Sorry Mohammad! Thank-you for your help

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Tables 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by