Re: [Matplotlib-users] Defining a precise x-axis max in plot()

2011-01-25 Thread Lionel (Lee) Brooks 3rd
Hi Eric, You solved my problem; I called axis after the call to plot and the min-max obeyed my explicit definition. The version of matplotlib that I am running is python-matplotlib - 0.99.0-1ubuntu1 (amd64). Sorry for the incomplete code snippet that I submitted with my initial request. In

[Matplotlib-users] Defining a precise x-axis max in plot()

2011-01-24 Thread Lionel (Lee) Brooks 3rd
Hello Gentlepeople, I am plotting an integer array using: matplotlib.pyplot.plot(). For my purposes it is imperative that the x-axis be explicitly defined. I have tried to achieve this by using: matplotlib.pyplot.axis(v). Where v is a list of integer values corresponding to the desired axes

Re: [Matplotlib-users] Defining a precise x-axis max in plot()

2011-01-24 Thread Eric Firing
On 01/24/2011 02:49 PM, Lionel (Lee) Brooks 3rd wrote: Hello Gentlepeople, I am plotting an integer array using: matplotlib.pyplot.plot(). For my purposes it is imperative that the x-axis be explicitly defined. I have tried to achieve this by using: matplotlib.pyplot.axis(v). Where v is a