The latest version of numpy is listing the matrix class as something that may be deprecated in the future (see numpy-discussion thread). This is currently generating warning messages in our unit tests (see issue #232) but otherwise not causing any harm.
At some point we have to decide whether to switch out internal operations to use the array class, as recommended in the numpy documentation.
The latest version of
numpyis listing thematrixclass as something that may be deprecated in the future (see numpy-discussion thread). This is currently generating warning messages in our unit tests (see issue #232) but otherwise not causing any harm.At some point we have to decide whether to switch out internal operations to use the
arrayclass, as recommended in the numpy documentation.