Help!!! Is there a way to get rid of a row in a timetable if any of the columns contain a negative values or any value thats below a given limit??

1 view (last 30 days)
I want to set an arbitrary limit and eliminate any row that contain a value below the limit in a specified column of the timetable. So as an example, if i have columns A,B,C and there is a row in column B that is below a certain value i set, i want to get rid of the entire row. Is there a fuction or a nifty way of doing this? I am really trying to avoid creating any type of of loop as that would make my work messy.

Accepted Answer

Walter Roberson
Walter Roberson on 9 Jul 2021
T(T.B < threshold,:) = [];

More Answers (0)

Categories

Find more on Graphics Objects in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!