You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Both are correct, but I get different lines when running the following code on python2.7 vs python3.2:
import matplotlib.pyplot as plt
import numpy as np
x, y = np.arange(8), np.arange(10)
data = u = v = np.linspace(0, 10, 80).reshape(10, 8)
v = np.sin(v * -0.6)
plt.streamplot(x, y, u, v)
plt.savefig('sample.png')
Obviously this makes testing streamplotting quite tricky and would be nice if we could make the results consistent.
The text was updated successfully, but these errors were encountered:
Both are correct, but I get different lines when running the following code on python2.7 vs python3.2:
Obviously this makes testing streamplotting quite tricky and would be nice if we could make the results consistent.
The text was updated successfully, but these errors were encountered: