All Versions
15
Latest Version
Avg Release Cycle
18 days
Latest Release
2622 days ago

Changelog History
Page 1

  • v0.4.2 Changes

    February 17, 2017

    ๐Ÿ’ฅ Breaking Changes

    • ๐Ÿšš None, but Matrix::lup_decomp has been deprecated and will be removed soon.

    ๐Ÿ”‹ Features

    • โž• Added dedicated PermutationMatrix. This type provides more efficent operations with permutation matrices.
    • โž• Added CSV read/write functionality to Matrix. Under io feature flag.
    • Added column iterators, accessed via BaseMatrix::col_iter and BaseMatrixMut::col_iter_mut functions.
    • โž• Added new PartialPivLU struct which contains the result of an LUP decomposition. ๐Ÿš€ This struct will replace the Matrix::lup_decomp function in a future release.

    ๐Ÿ› Bug Fixes

    • ๐Ÿ›  Fixed an overflow bug with SliceIter.

    Minor Changes

    • ๐Ÿ›  Fixed (very) minor performance issue in min/max functions.
  • v0.4.1 Changes

    December 29, 2016

    ๐Ÿ’ฅ Breaking Changes

    • None

    ๐Ÿ”‹ Features

    • โž• Added new vector! macro for Vector construction.
    • โž• Added new min and max functions to the BaseMatrix trait.
    • Implemented conversion traits to convert Row/Column types to Vector.

    ๐Ÿ› Bug Fixes

    • None

    Minor Changes

    • ๐ŸŽ Performance improvement to BaseMatrix::sum_rows function. also gives passive improvement to mean and variance.
    • Improving layout of the vector module.
    • Made matrix! macro use square brackets consistently.
  • v0.4.0 Changes

    December 27, 2016

    ๐Ÿš€ This release includes mostly quality of life changes for users of rulinalg. We do some work to conform more to community standards with naming, for example iter_rows becoming row_iter. Additionally several Matrix functions now consume self ๐Ÿ‘ฏ where before they took a reference and immediately cloned self.

    Another noticable change is the addition of new Row and Column types. These types are returned by functions which access single rows or columns in a matrix. With these new types we aim to make it easy for users to do matrix operations on single ๐ŸŽ rows and columns while maintaining performance where necessary.

    ๐Ÿš€ This release also welcomes an overhaul of the Metric trait. This trait didn't really make sense and only allowed computation of the euclidean norm. We have created new Norm and Metric traits for both Vector and matrix types (we would like a single pair of traits but this is not possible without specialization). These new traits allow users to write code which is generic over norms and specify their own norms. We also provide Metric implementations for all Norm implementors by computing the norm of the difference between the objects.

    ๐Ÿš€ The full release notes are below.

    ๐Ÿ†• New Contributors

    ๐Ÿ’ฅ Breaking Changes

    • The reslice function for MatrixSlice and MatrixSliceMut has been depreciated.
    • Rename iterator functions to *_iter(_mut). Affected functions are: iter_diag, iter_diag_mut, iter_rows, iter_rows_mut.
    • The BaseMatrix diag function now returns an iterator.
    • โœ‚ Removed the Metric trait and all implementations.
    • Some functions now consume self instead of cloning internally: eigenvalues, eigendecomp, lup_decomp, solve, inverse and det.
    • The get_row no longer returns a &[T]. Instead it returns the new Row type.
    • Row iterator no longer has a &[T] item. Instead if uses the new Row type.
    • ๐Ÿšš Moved the BaseMatrix and BaseMatrixMut traits to a new matrix/base module.

    ๐Ÿ”‹ Features

    • Implemented FromIterator for Vector.
    • Implemented from_fn for Vector.
    • Implemented get_unchecked for Vector.
    • Implemented try_into function using num's NumCast for Matrix.
    • โž• Added new traits to replace Metric; MatrixNorm and VectorNorm. These come with MatrixMetric and VectorMetric traits too.
    • โž• Added new Euclidean and Lp norms.
    • The get_row functions now return the new Row type.
    • โž• Added a new get_col function which returns the new Column type.
    • The row_iter function uses the new Row type as the iterator Item.

    ๐Ÿ› Bug Fixes

    • ๐Ÿ›  Fixed a bug in the ULP comparator where only exact matches were allowed.

    Minor Changes

    • The swap_rows and swap_cols functions are now no-ops if given two identical indices.
    • Splitting out the slice module for developer QOL.
  • v0.3.7 Changes

    November 17, 2016

    ๐Ÿ†• New Contributors

    ๐Ÿ’ฅ Breaking Changes

    • None

    ๐Ÿ”‹ Features

    • Added new assert_matrix_eq! and assert_vector_eq! macros for easier equality checks. Provides multiple equality comparisons: ulp, abs, float, exact.

    ๐Ÿ› Bug Fixes

    • ๐ŸŽ Further improvements (performance and stability) to the LU decomposition algorithm.

    Minor Changes

    • โœ‚ Removed import warning on lu module.
  • v0.3.6 Changes

    November 05, 2016

    ๐Ÿ’ฅ Breaking Changes

    • None

    ๐Ÿ”‹ Features

    • None

    ๐Ÿ› Bug Fixes

    • ๐Ÿ‘Œ Improved numerical stability of the LUP decomposition.

    Minor Changes

    • None
  • v0.3.5 Changes

    October 30, 2016

    ๐Ÿ†• New Contributors

    ๐Ÿ’ฅ Breaking Changes

    • None

    ๐Ÿ”‹ Features

    • Added new iter_diag and iter_diag_mut functions to BaseMatrix and BaseMatrixMut respectively.

    ๐Ÿ› Bug Fixes

    • The matrix! macro now works on empty matrices.

    Minor Changes

    • ๐Ÿ”จ Some refactoring of decomposition module.
    • More lenient error handling on triangular solvers. They no longer assert! that a matrix is triangular.
    • โœ… All tests are now using matrix! macro and other tidier constructors.
  • v0.3.4 Changes

    October 02, 2016

    ๐Ÿ†• New Contributors

    ๐Ÿ’ฅ Breaking Changes

    • โœ‚ Removed the MachineEpsilon trait. The same functionality now exists in num.

    ๐Ÿ”‹ Features

    • Implemented From/Into for traits for Vec and Vector.

    ๐Ÿ› Bug Fixes

    • det() now returns 0 instead of panicking if Matrix is singular.

    Minor Changes

    • None
  • v0.3.3 Changes

    September 24, 2016

    ๐Ÿ†• New Contributors

    ๐Ÿ’ฅ Breaking Changes

    • None

    ๐Ÿ”‹ Features

    • SVD now returns singular values in descending order.
    • Implemented a new matrix! macro for creating (small) matrices.
    • โž• Added a from_fn constructor for Matrix.
    • Implementing IndexMut for Vector.
    • โž• Added iter and iter_mut for Vector.
    • Implemented IntoIter for Vector.

    ๐Ÿ› Bug Fixes

    • ๐Ÿ›  Fixed bug with SVD convergence (would loop endlessly).
    • Singular values from SVD are now non-negative.

    Minor Changes

    • None
  • v0.3.2 Changes

    September 10, 2016

    ๐Ÿ†• New Contributors

    ๐Ÿ’ฅ Breaking Changes

    • Matrix::variance now returns a Result.

    ๐Ÿ”‹ Features

    • Added swap_rows and swap_cols function to BaseMatrixMut.

    Minor Changes

    • Implemented Display for Vector.
  • v0.3.1 Changes

    September 04, 2016

    ๐Ÿ†• New Contributors

    ๐Ÿ’ฅ Breaking Changes

    • None

    ๐Ÿ”‹ Features

    • None

    Minor Changes

    • Improved documentation for sum_rows and sum_cols functions.
    • Generalized signature of select_rows and select_cols. These functions now take an ExactSizeIterator instead of a slice.