uncertainties
uncertainties copied to clipboard
Removing unumpy.py core dependency on matrices
Removing numpy deprecation warning mentioned here #114
Changed "asmatrix" to "asarray" Changed * operator to @ operator for the inverse functions (as shown in diff file below). Passed unit tests on my computer except for the lib2to3 unit test since I do not have that module. This also removed the deprecation warnings during unit tests on my code, without breaking my own code's unit tests.
Adding .conj() for non-real numbers.
I don't have a unit test to check correct the behavior for non-real numbers.
I am not sure if the integration checks are failing because I used the @ operator or due to something else. Would it be better to use numpy.matmul?
Would it be better to use numpy.matmul?
Probably not, the errors in the logs seem to not be related to your changes. I guess those errors affect not only this pull request. I think my pr (#116) fixes some of the bugs because they annoyed me a lot...