annotate _FullBNT/KPMtools/plotColors.m @ 9:4ea6619cb3f5 tip

removed log files
author matthiasm
date Fri, 11 Apr 2014 15:55:11 +0100
parents b5b38998ef3b
children
rev   line source
matthiasm@8 1 function styles = plotColors()
matthiasm@8 2
matthiasm@8 3 colors = ['r' 'b' 'k' 'g' 'c' 'y' 'm' ...
matthiasm@8 4 'r' 'b' 'k' 'g' 'c' 'y' 'm'];
matthiasm@8 5 symbols = ['o' 'x' '+' '>' '<' '^' 'v' ...
matthiasm@8 6 '*' 'p' 'h' 's' 'd' 'o' 'x'];
matthiasm@8 7 for i=1:length(colors)
matthiasm@8 8 styles{i} = sprintf('-%s%s', colors(i), symbols(i));
matthiasm@8 9 end
matthiasm@8 10