Introduction
Introduction Statistics Contact Development Disclaimer Help
tplot.gp - numeric - C++ library with numerical algorithms
git clone git://src.adamsgaard.dk/numeric
Log
Files
Refs
LICENSE
---
tplot.gp (451B)
---
1 set terminal png
2 set output "performance.png"
3 set xlabel "Sample points N"
4 set ylabel "Execution time [s]"
5 set title "Performane analysis"
6 set log xy
7 set grid
8 plot "performance.dat" u 1:2 title "Plain Monte-Carlo" w lp
9
10 set terminal png
11 set output "error.png"
12 set xlabel "Sample points N"
13 set ylabel "Error"
14 set title "Error analysis"
15 set log xy
16 set grid
17 plot "performance.dat" u 1:3 title "Plain Monte-Carlo" w lp, 1/sqrt(x) w…
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.