📄 set_colormap.m
字号:
function set_colormap(a)% set_colormap - set colors for display%% set_colormap('jet');% set_colormap('gray');% set_colormap('hot');%% Copyright (c) 2008 Gabriel Peyreif strcmp(a, 'jet') colormap jet(256); elseif strcmp(a, 'gray') colormap gray(256); elseif strcmp(a, 'hot') colormap hot(256); else error('Unknown colormap');end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -