You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a boolean member called symmetric that defines is the operator is symmetric or not. This will be always False if the operator is not square, while it can be fixed for a square operator or depend to its input parameters like in the case of Block and BlockDiagonal operators
Add also a 'validation' method to LinearOperator called isymmetric which validates the following equality <x, Ay>==<y, Ax>
Check symmetric when solving an inverse problem in one of the classes that invoke script solvers and use it to choose the most appropriate solver (e.g., cg for symmetric operators)
The text was updated successfully, but these errors were encountered:
mrava87
changed the title
Add symmetric member of linear operators
Add symmetric member to linear operators
Apr 5, 2020
Yes, this is open :) I would suggest to start looking into it but wait to work actively as most of the changes will be done in the linearoperator.py file so it is wise to wait until we approve this PR #482
symmetric
that defines is the operator is symmetric or not. This will be always False if the operator is not square, while it can be fixed for a square operator or depend to its input parameters like in the case ofBlock
andBlockDiagonal
operatorsLinearOperator
calledisymmetric
which validates the following equality<x, Ay>==<y, Ax>
symmetric
when solving an inverse problem in one of the classes that invoke script solvers and use it to choose the most appropriate solver (e.g.,cg
for symmetric operators)The text was updated successfully, but these errors were encountered: