-
-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Description
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?
Metadata
Metadata
Assignees
Labels
No labels