qiskit.aqua.components.initial_states.InitialState¶
-
class
InitialState
[소스]¶ Base class for InitialState.
This method should initialize the module and use an exception if a component of the module is not available.
Methods
__init__
()Initialize self.
construct_circuit
([mode, register])Construct the statevector of desired initial state.
Attributes
-
property
bitstr
¶
-
abstract
construct_circuit
(mode='circuit', register=None)[소스]¶ Construct the statevector of desired initial state.
- 매개변수
mode (
str
) – vector or circuit. The vector mode produces the vector. While the circuit constructs the quantum circuit corresponding that vector.register (
Optional
[QuantumRegister
]) – qubits for circuit construction.
- 반환값
statevector.
- 반환 형식
QuantumCircuit or numpy.ndarray
- 예외
AquaError – when mode is not ‘vector’ or ‘circuit’.
-
property