fork download
  1. # Importamos librerias necesarias
  2. # SciPy, SciPy,integrate: librerías para solución por Runge-Kutta 4,5 de la ecuación.
  3. # Matplotlib: para graficar función solución (theta(t))
  4. # Numpy: Matemáticas y trabajo matricial.
  5. import matplotlib.pyplot as plt
  6. ejex=["SON", "BC", "NL", "JAL", "PUE", "CHIH"]
  7. ejey=[2,2.3,4,4,7,5]
  8. plt.plot (ejex, ejey)
  9. plt.show()
Success #stdin #stdout 0.67s 55768KB
stdin
Standard input is empty
stdout
Standard output is empty