about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/KPMtools/plotColors.m
blob: ded97483bcb07948491e72097ec13f5148f12860 (plain)
1
2
3
4
5
6
7
8
9
10
function styles =  plotColors()

colors =  ['r' 'b' 'k' 'g' 'c' 'y' 'm' ...
	   'r' 'b' 'k' 'g' 'c' 'y' 'm'];
symbols = ['o' 'x' '+' '>' '<' '^' 'v' ...
	   '*' 'p' 'h' 's' 'd' 'o' 'x'];
for i=1:length(colors)
  styles{i} = sprintf('-%s%s', colors(i), symbols(i));
end