spectralmni.m

来自「医学图像处理matlab工具箱」· M 代码 · 共 55 行

M
55
字号
function s = spectral(m)%SPECTRAL Black-purple-blue-green-yellow-red-white color map.%%         map = spectral(num_colors)%% SPECTRAL(M) returns an M-by-3 matrix containing a "spectral" colormap.% SPECTRAL, by itself, is the same length as the current colormap.%% For example, to reset the colormap of the current figure:%%           colormap(spectral)%% See also HSV, GRAY, PINK, HOT, COOL, BONE, COPPER, FLAG,%          COLORMAP, RGBPLOT.% $Id: spectral.m,v 1.4 1997/10/20 18:23:22 greg Rel $% $Name: emma_v0_9_5 $%         Copyright (c) 1984-92 by The MathWorks, Inc.%         Spectral version made by Gabriel Leger, MBIC, MNI (c) 1993if nargin < 1, m = size(get(gcf,'colormap'),1); endn = fix(3/8*m);base = [ 1 0.0000 0.0000 0.0000 2 0.4667 0.0000 0.5333 3 0.5333 0.0000 0.6000 4 0.0000 0.0000 0.6667 5 0.0000 0.0000 0.8667 6 0.0000 0.4667 0.8667 7 0.0000 0.6000 0.8667 8 0.0000 0.6667 0.6667 9 0.0000 0.6667 0.533310 0.0000 0.6000 0.000011 0.0000 0.7333 0.000012 0.0000 0.8667 0.000013 0.0000 1.0000 0.000014 0.7333 1.0000 0.000015 0.9333 0.9333 0.000016 1.0000 0.8000 0.000017 1.0000 0.6000 0.000018 1.0000 0.0000 0.000019 0.8667 0.0000 0.000020 0.8000 0.0000 0.000021 1.0000 1.0000 1.0000];n = length(base);X0 = linspace (1, n, m);s = table(base,X0)';

⌨️ 快捷键说明

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