-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcolourscale_test.m
95 lines (70 loc) · 1.51 KB
/
colourscale_test.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
%% Example of the COLOURSCALE function
%% Example of different number of plots
% number of plots to demo:
M = 3;
N = 3;
% points per graph:
p = 20;
% colour: (0-100)
HUE = 10;
CHROMA = 60;
% linewidths:
LW = [0.5 4]; % more exaggerated than default
figure(1)
for m = 1:M
for n = 1:N
c = N*(m-1)+n; % count from 1:N*M
subplot(M,N,c); cla;
xx = linspace(0,1,p);
yy = repmat(1:c,[p 1])+rand(p,c);
plot(xx,yy,'linewidth',5)
colourscale('hue',HUE,'chroma',CHROMA,'linewidth',LW);
title(['Number of lines: ',num2str(c)])
axis tight
end
end
%% Example across colours
% number of plots to demo:
M = 4;
N = 4;
% lines per graph:
l = 6;
% points per line:
p = 20;
hrange = linspace(0,100,M*N+1);
hrange(end) = [];
figure(2)
for m = 1:M
for n = 1:N
c = N*(m-1)+n; % count from 1:N*M
subplot(M,N,c); cla;
xx = linspace(0,1,p);
yy = repmat(1:l,[p 1])+rand(p,l);
plot(xx,yy,'linewidth',2)
colourscale('hue',hrange(c),'lumin',[20 90]);
title(['H=',num2str(hrange(c))])
axis tight
end
end
%% Example of different number of plots
% number of plots to demo:
M = 1;
N = 1;
% lines per graph:
l = 28;
% points per line:
p = 20;
hrange = linspace(0,100,M*N+1);
hrange(end) = [];
figure(2)
m = 1;
n = 1;
c = N*(m-1)+n; % count from 1:N*M
subplot(M,N,c); cla;
xx = linspace(0,1,p);
yy = repmat(1:l,[p 1])+rand(p,l);
plot(xx,yy,'linewidth',2)
x=[1:7;1:7;1:7;1:7];
rgb = colourscale('hue',hrange(c),'lumin',[20 90],'repeat',4);
title(['H=',num2str(hrange(c))])
axis tight