Release 3.5.0
Changes from 3.4.0 to 3.5.0
-
New
blosc2.stack()function for stacking multiple arrays along a new axis.
Useful for creating multi-dimensional arrays from multiple 1D arrays.
See PR #427. Thanks to Luke Shaw for the implementation!
Blog: https://www.blosc.org/posts/blosc2-new-concatenate/#stacking-arrays -
New
blosc2.expand_dims()function for expanding the dimensions of an array.
This is useful for adding a new axis to an array, similar to NumPy'snp.expand_dims().
See PR #427. Thanks to Luke Shaw for the implementation!