Korean
언어
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.aqua.components.eigs.Eigenvalues

class Eigenvalues[소스]

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__()[소스]

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 register sizes

get_scaling()

get scaling

abstract construct_circuit(mode, register=None)[소스]

Construct the eigenvalue estimation quantum circuit.

매개변수
  • mode (str) – ‘matrix’ or ‘circuit’

  • register (QuantumRegister) – register for circuit construction where eigenvalues will be stored.

반환값

object for the eigenvalue estimation circuit.

반환 형식

QuantumCircuit

예외

NotImplementedError – not implemented

construct_inverse(mode, circuit)[소스]

Construct the inverse eigenvalue estimation quantum circuit.

매개변수
  • mode (str) – construction mode, ‘matrix’ not supported

  • circuit (QuantumCircuit) – the quantum circuit to invert

반환값

object for of the inverted eigenvalue estimation

circuit.

반환 형식

QuantumCircuit

예외
  • NotImplementedError – not implemented for matrix mode

  • ValueError – Circuit was not constructed beforehand

abstract get_register_sizes()[소스]

get register sizes

abstract get_scaling()[소스]

get scaling