Re: [Numpy-discussion] @xoviat

2018-02-12 Thread Ralf Gommers
On Mon, Feb 12, 2018 at 7:42 PM, Charles R Harris wrote: > Anyone know what happened to xoviat? He seems to have been disappeared. > His account was flagged by GitHub after scipy issue gh-8373. Flagging means your profile, and all your issue comments, PRs, etc. are all made private. It is quite

[Numpy-discussion] @xoviat

2018-02-12 Thread Charles R Harris
Anyone know what happened to xoviat? He seems to have been disappeared. Chuck ___ NumPy-Discussion mailing list NumPy-Discussion@python.org https://mail.python.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] improving arange()? introducing fma()?

2018-02-12 Thread Chris Barker
I think it's all been said, but a few comments: On Sun, Feb 11, 2018 at 2:19 PM, Nils Becker wrote: > Generating equidistantly spaced grids is simply not always possible. > exactly -- and linspace gives pretty much teh best possible result, guaranteeing tha tthe start an end points are exact, a

Re: [Numpy-discussion] Using the C-API iterator with object arrays

2018-02-12 Thread Eric Moore
On Mon, Feb 12, 2018 at 6:13 AM, Eugen Wintersberger < eugen.wintersber...@gmail.com> wrote: > Hi there, > I have a question concerning the numpy iterator C-API. I want to create a > numpy > string array using NPY_OBJECT as a datatype for creating the array (the > reason I am going for this > appr

Re: [Numpy-discussion] Using the C-API iterator with object arrays

2018-02-12 Thread Jaime Fernández del Río
On Mon, Feb 12, 2018 at 12:13 PM Eugen Wintersberger < eugen.wintersber...@gmail.com> wrote: > Hi there, > I have a question concerning the numpy iterator C-API. I want to create a > numpy > string array using NPY_OBJECT as a datatype for creating the array (the > reason I am going for this > appr

[Numpy-discussion] Using the C-API iterator with object arrays

2018-02-12 Thread Eugen Wintersberger
Hi there, I have a question concerning the numpy iterator C-API. I want to create a numpy string array using NPY_OBJECT as a datatype for creating the array (the reason I am going for this approach is that I do not know the length of the individual strings at the time I construct the array, I o