Hello Tyler,
To solve this problem, you need to iterate through your data to find the lowest value, display it, and then find the next highest value iteratively. This involves keeping track of which values you've already processed, ensuring that each iteration finds the next smallest unprocessed value.
- Data Reading: The textread function reads the data from the .txt file into two arrays, Time and Height.
- Initialization: Arrays t and h are used to store the sorted times and corresponding heights. A logical array processedIndices keeps track of which indices have already been processed.
- While Loop: The loop continues until all times are processed. It searches for the smallest unprocessed value in each iteration.
- Finding Minimum: Inside the loop, iterate over the Time array to find the smallest value that hasn't been processed yet. This is done using a simple comparison against minValue.
- Updating Results: Once the minimum is found, add it to the t and h arrays and mark the index as processed.
I hope this helps!