Created
August 24, 2016 13:19
-
-
Save Mitsos101/1ca30527196e5969034636d099b36df4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in 1:(length(samples) - 1) | |
if (samples[i + 1] - samples[i]) < 500 | |
deleteat!(samples, i:i+1) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment