⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 get_color.m

📁 实现地震勘探中
💻 M
字号:
function col=get_color(index,colors)% Get 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% See also: get_marker, get_linestyle%% Written by: E. R.:% Last updated: October 29, 2007: allow RGB "colors" (second input argument)%%         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 string or RGB color vector%% EXAMPLE%         mark=get_color(2,{'r','g','blue'})% UPDATE HISTORY%         March 2, 2007: allow empty "colors" (second input argument)if nargin == 1  || isempty(colors)   colors={'r',  'g',  'b',  'k',  'c',  'm',  'y', ...           'r--','g--','b--','k--','c--','m--','y--', ...           'r:', 'g:', 'b:', 'k:', 'c:', 'm:', 'y:'};elseif ischar(colors)    colors={colors};    endif isnumeric(colors)   col=colors(mod(index-1,length(colors)-1)+1,:);else   col=colors{mod(index-1,length(colors)-1)+1};end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -