📄 yellow.m
字号:
function y = yellow(m)%YELLOW Linear yellow-scale color map.% YELLOW(M) returns an M-by-3 matrix containing a yellow-scale colormap.% YELLOW, by itself, is the same length as the current colormap.%% For example, to reset the colormap of the current figure:%% colormap(yellow)%% See also HSV, HOT, COOL, BONE, COPPER, PINK, FLAG, % COLORMAP, RGBPLOT. if nargin < 1, m = size(get(gcf,'colormap'),1); endy = (0:m-1)'/max(m-1,1);y = [y y zeros(size(y))];
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -