qiskit.aqua.algorithms.NumPyEigensolver¶
-
class
NumPyEigensolver
(operator=None, k=1, aux_operators=None, filter_criterion=None)[ソース]¶ The NumPy Eigensolver algorithm.
NumPy Eigensolver computes up to the first \(k\) eigenvalues of a complex-valued square matrix of dimension \(n \times n\), with \(k \leq n\).
注釈
Operators are automatically converted to
MatrixOperator
as needed and this conversion can be costly in terms of memory and performance as the operator size, mostly in terms of number of qubits it represents, gets larger.- パラメータ
operator (
Union
[OperatorBase
,LegacyBaseOperator
,None
]) – Operator instance. If None is supplied it must be provided later before run() is called. Allowing None here permits the algorithm to be configured and used later when operator is available, say creating an instance an letting application stack use this algorithm with an operator it creates.k (
int
) – How many eigenvalues are to be computed, has a min. value of 1.aux_operators (
Optional
[List
[Union
[OperatorBase
,LegacyBaseOperator
,None
]]]) – Auxiliary operators to be evaluated at each eigenvaluefilter_criterion (
Optional
[Callable
[[Union
[List
,ndarray
],float
,Optional
[List
[float
]]],bool
]]) – callable that allows to filter eigenvalues/eigenstates, only feasible eigenstates are returned in the results. The callable has the signature filter(eigenstate, eigenvalue, aux_values) and must return a boolean to indicate whether to keep this value in the final returned result or not. If the number of elements that satisfies the criterion is smaller than k then the returned list has fewer elements and can even be empty.
-
__init__
(operator=None, k=1, aux_operators=None, filter_criterion=None)[ソース]¶ - パラメータ
operator (
Union
[OperatorBase
,LegacyBaseOperator
,None
]) – Operator instance. If None is supplied it must be provided later before run() is called. Allowing None here permits the algorithm to be configured and used later when operator is available, say creating an instance an letting application stack use this algorithm with an operator it creates.k (
int
) – How many eigenvalues are to be computed, has a min. value of 1.aux_operators (
Optional
[List
[Union
[OperatorBase
,LegacyBaseOperator
,None
]]]) – Auxiliary operators to be evaluated at each eigenvaluefilter_criterion (
Optional
[Callable
[[Union
[List
,ndarray
],float
,Optional
[List
[float
]]],bool
]]) – callable that allows to filter eigenvalues/eigenstates, only feasible eigenstates are returned in the results. The callable has the signature filter(eigenstate, eigenvalue, aux_values) and must return a boolean to indicate whether to keep this value in the final returned result or not. If the number of elements that satisfies the criterion is smaller than k then the returned list has fewer elements and can even be empty.
Methods
__init__
([operator, k, aux_operators, …])- type operator
Union
[OperatorBase
,LegacyBaseOperator
,None
]
compute_eigenvalues
([operator, aux_operators])Computes eigenvalues.
run
()Execute the classical algorithm.
Whether computing the expectation value of auxiliary operators is supported.
Attributes
Returns the auxiliary operators.
returns the filter criterion if set
returns k (number of eigenvalues requested)
Return the operator.
Return a numpy random.
-
property
aux_operators
¶ Returns the auxiliary operators.
- 戻り値の型
Optional
[List
[Optional
[OperatorBase
]]]
-
compute_eigenvalues
(operator=None, aux_operators=None)[ソース]¶ Computes eigenvalues. Operator and aux_operators can be supplied here and if not None will override any already set into algorithm so it can be reused with different operators. While an operator is required by algorithms, aux_operators are optional. To 『remove』 a previous aux_operators array use an empty list here.
- パラメータ
operator (
Union
[OperatorBase
,LegacyBaseOperator
,None
]) – If not None replaces operator in algorithmaux_operators (
Optional
[List
[Union
[OperatorBase
,LegacyBaseOperator
,None
]]]) – If not None replaces aux_operators in algorithm
- 戻り値の型
EigensolverResult
- 戻り値
EigensolverResult
-
property
filter_criterion
¶ returns the filter criterion if set
- 戻り値の型
Optional
[Callable
[[Union
[List
,ndarray
],float
,Optional
[List
[float
]]],bool
]]
-
property
k
¶ returns k (number of eigenvalues requested)
- 戻り値の型
int
-
property
operator
¶ Return the operator.
- 戻り値の型
Optional
[OperatorBase
]
-
property
random
¶ Return a numpy random.
-
run
()¶ Execute the classical algorithm.
- 戻り値
results of an algorithm.
- 戻り値の型
dict