MATLAB: Looping through times, stop once I reach a certain number

loopstime

I have a list of times in a column, in HH:MM:SS. I want to go through each of these times, after converting them to seconds, and stop once I reach a certain number, say 3600. How do I go about doing this?

Best Answer

Set up a conditional statement that will execute a break statement if the condition is met (e.g. number == 3600).