mathjs v9.1.0 Release Notes

Release Date: 2021-01-27 // over 3 years ago
    • ๐Ÿ‘ Extended function reshape with support for a wildcard -1 to automatically calculate the remaining size, like reshape([1, 2, 3, 4, 5, 6], [-1, 2]) which will output [[0, 1], [2, 3], [4, 5]]. See #2075. Thanks @Josef37.
    • ๐Ÿ›  Fix #2087: function simplify ignores second argument of log, for example in simplify('log(e, 9)') . Thanks @quentintruong.