I would like to create a vector in which each element is the i+6th element of another vector. For example, in a vector of length 120 I want to create another vector of length 20 in which each element is value i, i+6, i+12, i+18.... of the initial vector, i.e. I want to extract every 6th element of the original.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
||||
|
|
|
|||||||
|
|
Another trick for getting sequential pieces (beyond the seq solution already mentioned) is to use a short logical vector and use vector recycling:
|
|||
|
|
|
I think you are asking two things which are not necessarily the same
You can do this by indexing a sequence:
An easy way to do this is to supplement a logical factor with FALSEs until
|
||||
|
|