-
Notifications
You must be signed in to change notification settings - Fork 0
/
allTrials.m
39 lines (35 loc) · 886 Bytes
/
allTrials.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
tic
figure2Gen('tutu', 'Color', '0');
figure2Gen('alpa', 'Color', '0');
hue = 10:10:90;
Hue = num2str(hue(:));
for i =1: length(hue)
figure2Gen('tutu', 'Color', Hue(i,:));
figure2Gen('alpa', 'Color', Hue(i,:));
disp(hue(i));
end
close all
hue = 100:10:350;
Hue = num2str(hue(:));
for i =1: length(hue)
figure2Gen('tutu', 'Color', Hue(i,:));
figure2Gen('alpa', 'Color', Hue(i,:));
disp(hue(i));
end
toc
close all
tic
disp('kesari');
figure2Gen('kesari', 'Length', 'con0');
figure2Gen('kesari', 'Length', 'con25');
figure2Gen('kesari', 'Length', 'con50');
figure2Gen('kesari', 'Length', 'con75');
figure2Gen('kesari', 'Length', 'con100');
disp('alpa')
figure2Gen('alpa', 'Length', 'con0');
figure2Gen('alpa', 'Length', 'con25');
figure2Gen('alpa', 'Length', 'con50');
figure2Gen('alpa', 'Length', 'con75');
figure2Gen('alpa', 'Length', 'con100');
toc
close all