-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathart_blue2yellowmap.m
71 lines (68 loc) · 2.17 KB
/
art_blue2yellowmap.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
function fmap = art_blue2yellowmap(i)
% Color map where high is yellow, low is blue and midrange is dark.
% Paul Mazaika July 2004 (no changes for v.2)
fmap = [
0.1445 0.9844 1.0000
0.1398 0.9526 0.9677
0.1352 0.9209 0.9355
0.1305 0.8891 0.9032
0.1259 0.8574 0.8710
0.1212 0.8256 0.8387
0.1165 0.7939 0.8065
0.1119 0.7621 0.7742
0.1072 0.7304 0.7419
0.1025 0.6986 0.7097
0.0979 0.6669 0.6774
0.0932 0.6351 0.6452
0.0886 0.6033 0.6129
0.0839 0.5716 0.5806
0.0792 0.5398 0.5484
0.0746 0.5081 0.5161
0.0699 0.4763 0.4839
0.0653 0.4446 0.4516
0.0606 0.4128 0.4194
0.0559 0.3811 0.3871
0.0513 0.3493 0.3548
0.0466 0.3175 0.3226
0.0420 0.2858 0.2903
0.0373 0.2540 0.2581
0.0326 0.2223 0.2258
0.0280 0.1905 0.1935
0.0233 0.1588 0.1613
0.0186 0.1270 0.1290
0.0140 0.0953 0.0968
0.0093 0.0635 0.0645
0.0047 0.0318 0.0323
0 0 0
0 0 0
0.0323 0.0318 0.0047
0.0645 0.0635 0.0093
0.0968 0.0953 0.0140
0.1290 0.1270 0.0186
0.1613 0.1588 0.0233
0.1935 0.1905 0.0280
0.2258 0.2223 0.0326
0.2581 0.2540 0.0373
0.2903 0.2858 0.0420
0.3226 0.3175 0.0466
0.3548 0.3493 0.0513
0.3871 0.3811 0.0559
0.4194 0.4128 0.0606
0.4516 0.4446 0.0653
0.4839 0.4763 0.0699
0.5161 0.5081 0.0746
0.5484 0.5398 0.0792
0.5806 0.5716 0.0839
0.6129 0.6033 0.0886
0.6452 0.6351 0.0932
0.6774 0.6669 0.0979
0.7097 0.6986 0.1025
0.7419 0.7304 0.1072
0.7742 0.7621 0.1119
0.8065 0.7939 0.1165
0.8387 0.8256 0.1212
0.8710 0.8574 0.1259
0.9032 0.8891 0.1305
0.9355 0.9209 0.1352
0.9677 0.9526 0.1398
1.0000 0.9844 0.1445 ];