-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple.gpldo
43 lines (35 loc) · 1.66 KB
/
simple.gpldo
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
set term mf
set output "simplef.mf"
set grid
unset border
unset key
plot "bubble_sort_random_0.dat" using 1:2 with points
plot "bubble_sort_random_25.dat" using 1:2 with points
plot "bubble_sort_random_50.dat" using 1:2 with points
plot "bubble_sort_random_75.dat" using 1:2 with points
plot "bubble_sort_random_100.dat" using 1:2 with points
plot "bubble_sort_desc_0.dat" using 1:2 with points
plot "bubble_sort_desc_25.dat" using 1:2 with points
plot "bubble_sort_desc_50.dat" using 1:2 with points
plot "bubble_sort_desc_75.dat" using 1:2 with points
plot "bubble_sort_desc_100.dat" using 1:2 with points
plot "insert_sort_random_0.dat" using 1:2 with points
plot "insert_sort_random_25.dat" using 1:2 with points
plot "insert_sort_random_50.dat" using 1:2 with points
plot "insert_sort_random_75.dat" using 1:2 with points
plot "insert_sort_random_100.dat" using 1:2 with points
plot "insert_sort_desc_0.dat" using 1:2 with points
plot "insert_sort_desc_25.dat" using 1:2 with points
plot "insert_sort_desc_50.dat" using 1:2 with points
plot "insert_sort_desc_75.dat" using 1:2 with points
plot "insert_sort_desc_100.dat" using 1:2 with points
plot "select_sort_random_0.dat" using 1:2 with points
plot "select_sort_random_25.dat" using 1:2 with points
plot "select_sort_random_50.dat" using 1:2 with points
plot "select_sort_random_75.dat" using 1:2 with points
plot "select_sort_random_100.dat" using 1:2 with points
plot "select_sort_desc_0.dat" using 1:2 with points
plot "select_sort_desc_25.dat" using 1:2 with points
plot "select_sort_desc_50.dat" using 1:2 with points
plot "select_sort_desc_75.dat" using 1:2 with points
plot "select_sort_desc_100.dat" using 1:2 with points