Advertisement
Guest User

Untitled

a guest
Jul 24th, 2012
703
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. set terminal png
  2. set output 'fibgr.png'
  3. set grid
  4. set style data linespoints
  5. set title "Calculation of 10000 Fibonacci numbers (Fn)"
  6.  
  7. set xlabel "Approximate number n"
  8. set ylabel "Time, s"
  9.  
  10. plot "benchmark.txt" using 1:2 with lines title 'iterative', \
  11. "benchmark.txt" using 1:3 with lines title 'matrix'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement