Advertisement
Guest User

Untitled

a guest
May 22nd, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # coding: utf-8
  2.  
  3. set terminal png size 700,500 enhanced font 'Times, 11'
  4.  
  5. set output 'max_sub.png'
  6. set title 'Complejidad del algoritmo convencional del máximo subarreglo'
  7. set xlabel 'Tamaño del arreglo'
  8. set ylabel 'Tiempo computacional (s)'
  9. plot 'max_sub.csv' using 1:2 title 'Datos experimentales' with dots, .00000009*x*x title 'T(n) = 9*10^{-8}n^2'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement