Is there a command to (re)set the starting point of a cycle list?
What I am using now is the cycle list shift command but I end up doing some time consuming calculations and my code is oftenless robust as it use the number of elements of the cycle list which I might want to change afterwards.
Is there something like set cyle list at n?
Edit: to clarify the point raised by Jake, here is an example of the two possible mode as I undestand them.
Mode 1:
\addplot <- uses style 0
\addplot <- uses style 1
\addplot <- uses style 2
\pgfplotsset{cycle list set=5}
\addplot <- uses style 5
\addplot <- uses style 6
\addplot <- uses style 7
…
Mode 2:
\addplot <- uses style 0
\addplot <- uses style 1
\addplot <- uses style 2
\pgfplotsset{cycle list set just once=5}
\addplot <- uses style 5
\addplot <- uses style 4
\addplot <- uses style 5
…
What I had in mind when asking the question was mode 1.
Mode 2 could be interesting too, but maybe as a style:
\addplot[set cycle list=5] <- uses style 5
There could be also Mode 3:
\addplot <- uses style 0
\addplot <- uses style 1
\addplot <- uses style 2
\pgfplotsset{cycle list set=5}
\addplot <- uses style 5
\addplot <- uses style 5
\addplot <- uses style 6
but this is more or les equivalent to mode 2 (a shift of only one step is easily handled with cycle list shift).
