sfstoolbox / sfs-matlab

SFS Toolbox for Matlab/Octave
https://sfs-matlab.readthedocs.io
MIT License
96 stars 39 forks source link

Handling of automatic line coloring #160

Open hagenw opened 7 years ago

hagenw commented 7 years ago

Some of the figures in the documentation are generated by using the implicit plotting functionality of some functions, e.g.

time_response_wfs(X,xs,src,conf)

Since Matlab has changed its default colors, the output will no longer look the same as before and it will also deviate between Octave and Matlab. We should find a way to avoid this, but still show the cool automatic plotting functionality of the toolbox.

Note: for changing the color in Matlab after the plot was done, one could use the following:

hline = findobj(gcf, 'type', 'line');
set(hline,'Color','red');