Download this file
1 2 3 4 5 6 7 8 9 10 11 12 13
#!/usr/bin/env python # try plotting very large numbers from matplotlib.matlab import * x = arange(1000) + 2**32 subplot(211) plot(x,x) subplot(212) loglog(x,x) show()