Skip to content

Commit

Permalink
Merge pull request #4926 from ericmjl/mep12-log_test.py
Browse files Browse the repository at this point in the history
Mep12 log test.py
  • Loading branch information
WeatherGod committed Aug 15, 2015
2 parents 114a38a + ad994c1 commit b3d3ac3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/pylab_examples/log_test.py
@@ -1,10 +1,10 @@
#!/usr/bin/env python
from pylab import *
import matplotlib.pyplot as plt
import numpy as np

dt = 0.01
t = arange(dt, 20.0, dt)
t = np.arange(dt, 20.0, dt)

semilogx(t, exp(-t/5.0))
grid(True)
plt.semilogx(t, np.exp(-t/5.0))
plt.grid(True)

show()
plt.show()

0 comments on commit b3d3ac3

Please sign in to comment.