I ask it because I remember numpy does it with arrays. I should add two objects that contain monomials.
Alternatively is it possible to create custom mathematical operators? (like the @ of numpy's dot product)
I ask it because I remember numpy does it with arrays. I should add two objects that contain monomials.
Alternatively is it possible to create custom mathematical operators? (like the @ of numpy's dot product)
Copyright © 2021 Jogjafile Inc.
This is very possible. Classes can contain "magic methods" that can allow objects to interact with
+
and other operators. Specifically, this section of the documentation is relevant, although a quick read over that entire document would be quite helpful.The most relevant methods from that link:
@
can, for example, be used by implementing a__matmul__
method:You cannot create "custom" operators that don't already exist in the language, but you can make use of any of the hooks into existing operators.