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

📄 getcolormaps.m

📁 Continuous Profile Models (CPM) Matlab Toolbox.
💻 M
字号:
% function clmaps = getColorMaps(strList)% % load up the colormaps listed in strList% from the directory /u/jenn/matlab/colormaps/% strList={'blackToRed' 'blackToGreen'};function clmaps = getColorMaps(strList)mydir = '/u/jenn/matlab/colormaps/';%mydir = '~/matlab/colormaps/';clmaps = cell(1,length(strList));for mp=1:length(clmaps)  if ~exist(['''' strList{mp} ''''])    cmd1 = ['load ''' mydir strList{mp} '.mat'''];    %display(['The command: ' cmd1]);    eval(cmd1);    cmd2 = ['clmaps{' num2str(mp) '}=' strList{mp} ';'];    eval(cmd2);  endend

⌨️ 快捷键说明

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