On Wed, Jun 12, 2013 at 5:10 AM, Nathaniel Smith <njs@pobox.com> wrote:
> Personally I think that overloading np.empty is horribly ugly, will
> continue confusing newbies and everyone else indefinitely, and I'm
> 100% convinced that we'll regret implementing such a warty interface
> for something that should be so idiomatic.
...
deprecate np.ma.filled
in favor+1
> of masked_array.filled (which does exactly the same thing) and
> eventually switch np.ma.filled to be consistent with the new
> np.filled.
I had always assumed that np.ndarray() was a "low-level" interce that
> I also don't really see why an np.empty() constructor exists, it seems
> to do the same thing that np.ndarray() does.
you really don't want to use in regular code (maybe for subclassing
array...), as the docs say:
"""
Arrays should be constructed using `array`, `zeros` or `empty` (refer
to the See Also section below). The parameters given here refer toa low-level method (`ndarray(...)`) for instantiating an array.
"""
Am I wrong? is there any reason )other than history to have np.empty()
But in any case, I like np.filled(), as being analogous to ones(),
zeros() and empty()...