I'm using matplotlib, pyplot to draw some functions with plot.
I need y axis to be between (0.0001,0.1) and x axis to be between (100,10000), so I'm using axis([100, 10000, 0.0001, 0.1]).
But this does not work with my defined values.
I try:
plt.plot((100,10000),(0.0001,0.1))
plt.axis([100, 10000, 0.0001, 0.1])
plt.show()
and I get: