Release v3.0.0rc1
Pre-release
Pre-release
Siddhesh-Agarwal
released this
11 Feb 14:34
·
25 commits
to main
since this release
- Made multiple corrections that solved a few significant bugs.
matmath.py
has been converted into from a simple function definitions into a full fledge function class calledMatrix
.- Removed
compatM()
andcompatAS()
fromVector
class. - Improved
__init__
,__iter__
,__next__
,__repr__
and__str__
methods inVector
class. - Added support for
__matmul__
method and made changes to__mul__
method toVector
class. - removed
__radd__
,__rsub__
and__rmul__
methods from vector class (methods were not needed). - Added support for
!=
and==
operator toVector
class. - Created alias for
arguement
-arg
inVector
class. - Added support for
__radd__
and__rsub__
methods toVector
class. - Added
minor()
andcofactor()
methods toMatrix
class. __setitem__
method inVector
class has ben deprecated.