It is very convenient in numpy to use the .T
attribute to get a transposed version of an ndarray
. However, there is no similar way to get the conjugate transpose. Numpy's matrix class has the .H
operator, but not ndarray. Because I like readable code, and because I'm too lazy to always write .conj().T
, I would like the .H
property to always be available to me. How can I add this feature? Is it possible to add it so that it is brainlessly available every time numpy is imported?
(A similar question could by asked about the .I
inverse operator.)
In general, the difficulty in this problem is that Numpy is a C-extension, which cannot be monkey patched...or can it? The forbiddenfruit module allows one to do this, although it feels a little like playing with knives.
So here is what I've done:
Install the very simple forbiddenfruit package
Determine the user customization directory:
In that directory, edit
usercustomize.py
to include the following:Test it:
Results in: