📄 get_color.m
字号:
function col=get_color(index,colors)% Function gets the color symbol associated with index "index"% Colors are ['r';'g';'b';'k';'y';'c';'m']% For index > 7 the colors are repeated, but with dashes, then with dots;% thereafter the process repeats itself (ge_color(22) is 'r' again%% Written by: E. R.:% Last updated: April 2, 2004: use dots in addition to dashes%% col=get_color(index,colors)% INPUT% index index for which color symbol is requested% colors optional sequence of colors; % Default: colors={'r','g','b','k','c','m','y', ...% 'r--','g--','b--','k--','c--','m--','y--', ...% 'r:','g:','b:','k:','c:','m:','y:'}% OUTPUT% col string with color symbolif nargin == 1 colors={'r','b','g','k','c','m','y', ... 'r--','g--','b--','k--','c--','m--','y--', ... 'r:','g:','b:','k:','c:','m:','y:'};endcol=colors{mod(index-1,length(colors))+1};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -