Parent Directory
|
Revision Log
Todays version
1 | set terminal png color |
2 | set output "time.png" |
3 | |
4 | set xlabel "data length [characters]" |
5 | set ylabel "time [s]" |
6 | |
7 | plot \ |
8 | ".decode.txt" title "bytes->char", \ |
9 | ".parse.txt" title "html5->dom5", \ |
10 | ".serialize.txt" title "dom5 serialize", \ |
11 | ".check.txt" title "dom5 check" |
12 | |
13 | set output "time-log.png" |
14 | set logscale x |
15 | set logscale y |
16 | replot |
17 | |
18 | ## License: Public Domain. |
19 | ## $Date:$ |
admin@suikawiki.org | ViewVC Help |
Powered by ViewVC 1.1.24 |