|
Hey all,
I have a single column of data. Data length is n*19, as it is generated by a 19 sample cycle.
From every cycle I need to have the 2nd value deleted, so for example, I have a column like this:
1
2
3
4
5
6
...
...
190
which is 10 cycles of 19 samples each.
I need to have number 2 deleted, number 21, number 40, etc...
I tried to set up a loop, deleting every 19th row, starting from the 2nd.
The problem I encounter is that as soon as one row gets deleted, the index changes (so after deleting number 2, number 3 becomes number 2, which next causes number 20, instead of 21, to be deleted).
There must be a simple way to deal with this problem, can anyone help?
Thanks in advance,
Cheers!
Sven
|