On Mon, May 4, 2009 at 10:59 AM, Nils Wagner
wrote:
> On Mon, 4 May 2009 10:52:59 -0600
> Charles R Harris wrote:
> > On Mon, May 4, 2009 at 10:48 AM, Nils Wagner
> > wrote:
> >
> >> Hi all,
> >>
> >> How can I define a stop criterion for an alternating
> >>series ?
> >>
> >> Any pointer would b
On Mon, 4 May 2009 10:52:59 -0600
Charles R Harris wrote:
> On Mon, May 4, 2009 at 10:48 AM, Nils Wagner
> wrote:
>
>> Hi all,
>>
>> How can I define a stop criterion for an alternating
>>series ?
>>
>> Any pointer would be appreciated.
>>
>
> Where does the series come from and what are you
On Mon, May 4, 2009 at 10:48 AM, Nils Wagner
wrote:
> Hi all,
>
> How can I define a stop criterion for an alternating series ?
>
> Any pointer would be appreciated.
>
Where does the series come from and what are you trying to do?
Chuck
___
Numpy-discu
Hi all,
How can I define a stop criterion for an alternating
series ?
Any pointer would be appreciated.
Nils
from numpy import loadtxt, arange
from pylab import plot, show
A = loadtxt('alternate.dat')
m = len(A)
x = arange(0,m)
plot(x,A)
show()
alternate.dat
Description: MPEG movie
___