v0.20.4
Changes
- Added np.transpose, np.swapaxes, ndarray.T, np.moveaxis, np.rollaxis, np.size, np.copyto.
- Added np.ceil, np.arccos, np.floor, np.modf, np.square, np.round, np.sign, np.arcsin, np.arctan.
- Added np.random.*: beta, gamma, bernoulli, binomial, lognormal, normal, poisson, chisquare, geometric.
- Added support for
np.newaxis
,...
(ellipsis) in a slice. - Performance optimization for np.array, np.linspace, Randomizer class and all np.random.* methods.
Bug Fixes
- ndarray.view copying when it shouldn't.
- couple of ambiguous methods
Obsoletion
nd.Unsafe.Shape
is now obsolete in favor ofnd.Shape
.
Special thanks to @henon and @deepakkumar1984 for a PRing great portion of this release.