-
Notifications
You must be signed in to change notification settings - Fork 9
/
hot.m
33 lines (31 loc) · 1.05 KB
/
hot.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
%HOT Black-red-yellow-white colormap
%
% Examples:
% map = hot;
% map = hot(len);
% B = hot(A);
% B = hot(A, lims);
%
% Similar to MATLAB's hot function, but also able to return a concise
% colormap table.
%
% The function can additionally be used to convert a real-valued array into
% a truecolor array using the colormap.
%
% IN:
% len - Scalar length of the output colormap. If len == Inf the concise
% table is returned. Default: len = size(get(gcf, 'Colormap'), 1);
% A - Non-scalar numeric array of real values to be converted into
% truecolor.
% lims - 1x2 array of saturation limits to be used on A. Default:
% [min(A(:)) max(A(:))].
%
% OUT:
% map - (len)xJ colormap table. J = 3, except in the concise case, when
% J = 4, map(1:end-1,4) giving the relative sizes of the
% inter-color bins.
% B - size(A)x3 truecolor array.
% Copyright: Oliver Woodford, 2009
function map = hot(varargin)
map = [0 0 0 3; 1 0 0 3; 1 1 0 2; 1 1 1 0];
map = colormap_helper(map, varargin{:});