forked from bw1129/PIDtoolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PTlinecmap.m
21 lines (17 loc) · 967 Bytes
/
PTlinecmap.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function [multiLineCols] = PTlinecmap(nColors)
%% [multiLineCols] = PTlinecmap(nColors)
% input number of color lines, output colormap
% ----------------------------------------------------------------------------------
% "THE BEER-WARE LICENSE" (Revision 42):
% <[email protected]> wrote this file. As long as you retain this notice you
% can do whatever you want with this stuff. If we meet some day, and you think
% this stuff is worth it, you can buy me a beer in return. -Brian White
% ----------------------------------------------------------------------------------
cmap=flipud(colormap(jet));
multiLineCols=(downsample(cmap,ceil(length(cmap)/nColors)));
for i = find(multiLineCols(:,1) > .5 & multiLineCols(:,2) > .7 & multiLineCols(:,3) < .3)
multiLineCols(i,:) = multiLineCols(i,:) * .78;
end
round(100/nColors)
multiLineCols = repmat(multiLineCols, round(100/nColors),1);% repeats colormap to be 100 rows long
end