Skip to content

Release 3.5.0

Choose a tag to compare

@FrancescAlted FrancescAlted released this 24 Jun 15:31
· 734 commits to main since this release

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's np.expand_dims().
    See PR #427. Thanks to Luke Shaw for the implementation!