How do I combine those statements:
pyplot.axis([1234.0, 1773.0, 497.0, 1362.0])
pyplot.axis('equal')
I just want to define the limits of my axes, but with an equal scale in both directions.
P.S.: I tried pyplot.axis([1234.0, 1773.0, 497.0, 1362.0], 'equal')
, but didn't worked.