Hi Lorquino,
again a suggestion:
Comments:
- Instead of creating a string containing a timestamp to search a string array for the same string you really should convert your string input array to an array of DBL values containing the number seconds for your desired "step" - as I do in the snippet.
- You should rethink your data handling/storage: instead of two arrays, one for timestamps, one for other data/parameter, I would use one array of cluster, with each cluster containing all needed information for each "step" (like timestamp and all those other parameters)
- in the snippet the "segundos transcurridos" is rounded to integer to be able to find the corresponding value in the input array
- in your input array there are a lot of empty and wrong elements (containing "u"), which will disturb any algorithm you want to apply!
- it also was a bad idea to use a different formatting for the first two entries (you used "00:01" instead of "00:00:01"…)
When you really want to remove entries/rows from your arrays: use shift registers to store the changed array(s) for next iterations!