The current defined operators act only on the left.
For example
A = MatrixOperator(rand(10,10))
u = rand(10, 10)
the action A(u, p, t) is equivalent to A.A * u, acting on the left.
It would be very helpful to define an operator that allows to act the embedded operators from the right instead. Something like
O = RightActionOperator(A)
O(u, p, t) == u * A.A # true
Do you think it is something possible?
The current defined operators act only on the left.
For example
the action
A(u, p, t)is equivalent toA.A * u, acting on the left.It would be very helpful to define an operator that allows to act the embedded operators from the right instead. Something like
Do you think it is something possible?