qiskit.algorithms.EigensolverResult
class EigensolverResult
Eigensolver Result.
__init__
__init__()
Initialize self. See help(type(self)) for accurate signature.
Methods
__init__ () | Initialize self. |
combine (result) | Any property from the argument that exists in the receiver is updated. |
Attributes
aux_operator_eigenvalues | return aux operator eigen values |
eigenstates | return eigen states |
eigenvalues | returns eigen values |
aux_operator_eigenvalues
return aux operator eigen values
Return type
Optional
[ndarray
]
combine
combine(result)
Any property from the argument that exists in the receiver is updated. :type result: AlgorithmResult
:param result: Argument result with properties to be set.
Raises
TypeError – Argument is None
Return type
None
eigenstates
return eigen states
Return type
Optional
[ndarray
]
eigenvalues
returns eigen values
Return type
Optional
[ndarray
]
Was this page helpful?
Report a bug or request content on GitHub.