-
Notifications
You must be signed in to change notification settings - Fork 9
/
pastel.m
32 lines (30 loc) · 1.07 KB
/
pastel.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
%PASTEL Black-pastel-white colormap
%
% Examples:
% map = pastel;
% map = pastel(len);
% B = pastel(A);
% B = pastel(A, lims);
%
% A black to white colormap with several distinct pastel shades. This
% colormap converts linearly to grayscale when printed in black & white.
%
% 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)x3 colormap table.
% B - size(A)x3 truecolor array.
% Copyright: Oliver Woodford, 2009
function map = pastel(varargin)
map = [0 0 0; 0.4709 0 0.018; 0 0.3557 0.6747; 0.8422 0.1356 0.8525;
0.4688 0.6753 0.3057; 1 0.6893 0.0934; 0.9035 1 0; 1 1 1];
map = colormap_helper(map, varargin{:});