diff options
Diffstat (limited to 'sourcecodes/bnt-master/KPMtools/plotColors.m')
| -rw-r--r-- | sourcecodes/bnt-master/KPMtools/plotColors.m | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sourcecodes/bnt-master/KPMtools/plotColors.m b/sourcecodes/bnt-master/KPMtools/plotColors.m new file mode 100644 index 00000000..ded97483 --- /dev/null +++ b/sourcecodes/bnt-master/KPMtools/plotColors.m @@ -0,0 +1,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 + |
