Portuguese, Brazilian
Idiomas
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.aqua.components.initial_states.InitialState

class InitialState[código fonte]

Base class for InitialState.

This method should initialize the module and use an exception if a component of the module is not available.

abstract __init__()[código fonte]

Initialize self. See help(type(self)) for accurate signature.

Methods

__init__()

Initialize self.

construct_circuit([mode, register])

Construct the statevector of desired initial state.

Attributes

bitstr

property bitstr
abstract construct_circuit(mode='circuit', register=None)[código fonte]

Construct the statevector of desired initial state.

Parâmetros
  • 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.

Retorna

statevector.

Tipo de retorno

QuantumCircuit or numpy.ndarray

Levanta

AquaError – when mode is not ‘vector’ or ‘circuit’.