qiskit.aqua.components.eigs.Eigenvalues¶
-
class
Eigenvalues
[Quellcode]¶ Base class for eigenvalue estimation.
This method should initialize the module and use an exception if a component of the module is not available.
-
abstract
__init__
()[Quellcode]¶ Initialize self. See help(type(self)) for accurate signature.
Methods
__init__
()Initialize self.
construct_circuit
(mode[, register])Construct the eigenvalue estimation quantum circuit.
construct_inverse
(mode, circuit)Construct the inverse eigenvalue estimation quantum circuit.
get register sizes
get scaling
-
abstract
construct_circuit
(mode, register=None)[Quellcode]¶ Construct the eigenvalue estimation quantum circuit.
- Parameter
mode (str) – ‚matrix‘ or ‚circuit‘
register (QuantumRegister) – register for circuit construction where eigenvalues will be stored.
- Rückgabe
object for the eigenvalue estimation circuit.
- Rückgabetyp
- Verursacht
NotImplementedError – not implemented
-
construct_inverse
(mode, circuit)[Quellcode]¶ Construct the inverse eigenvalue estimation quantum circuit.
- Parameter
mode (str) – construction mode, ‚matrix‘ not supported
circuit (QuantumCircuit) – the quantum circuit to invert
- Rückgabe
- object for of the inverted eigenvalue estimation
circuit.
- Rückgabetyp
- Verursacht
NotImplementedError – not implemented for matrix mode
ValueError – Circuit was not constructed beforehand
-
abstract
get_register_sizes
()[Quellcode]¶ get register sizes
-
abstract
get_scaling
()[Quellcode]¶ get scaling
-
abstract