Is there a way to programmatically obtain the list of marker and line styles available for plotting in Octave?
Ideally, I would do something like
mslist = whatever_function_for_marker_styles;
lslist = whatever_function_for_line_styles;
for i = 1:np
plot(x, y(i,:), 'marker', mslist(i), 'linestyle', lslist(i))
endfor
Notes:
- I would add some
mod
functions to cycle across the lists. - I know the size of both lists may not be the same, so they may shift from one another upon cycling.
I agree with Howard that doing it 'entirely' programmatically is probably overkill.
However, if you do want to do that, my bet would be to parse the 'help' output for the 'plot' command, which is guaranteed to mention these points, and has a reasonable guarantee that it will remain in the same format even if more markers are added in the future etc.
I won't parse the whole thing, but if you were to do this, you'd probably start like this:
or something along those lines, and then use regexp or strfind / strtoken / strplit creatively to obtain the necessary tokens in each category.