About 231 results
Open links in new tab
  1. qiskit.org

    We first solve the problem classically: we use the `MinimumEigenOptimizer` with the `NumPyMinimumEigenSolver` as a classical and exact QUBO solver and we use the …

  2. qiskit.org

    "The Qiskit Aer `noise` module contains Python classes to build customized noise models for simulation. There are three key classes:\n", "\n", "1. The `NoiseModel` class which stores a …

  3. qiskit.org

    "from qiskit import *\n", "cq = QuantumRegister(2,'code_qubit')\n", "lq = QuantumRegister(1,'link_qubit')\n", "qc = QuantumCircuit(cq,lq)\n", "qc.cx(cq[0],lq[0])\n", …

  4. qiskit.aqua.operators.converters.circuit_sampler — Qiskit 0.26.1 ...

    # This code is part of Qiskit.## (C) Copyright IBM 2020.## This code is licensed under the Apache License, Version 2.0. You may# obtain a copy of this license in the LICENSE.txt file in the root …

  5. qiskit.org

    "from qiskit import QuantumCircuit\n", "\n", "circ = QuantumCircuit(2, 2)\n", "circ.h(0)\n", "circ.cx(0, 1)\n", "circ.measure([0, 1], [0, 1])\n", "\n", "circ.draw(\"mpl\")" ] }, { "cell_type": "markdown", …

  6. qiskit.org

    "In this tutorial, we briefly introduce how to build optimization problems using Qiskit's optimization module.\n", "Qiskit introduces the `QuadraticProgram` class to make a model of an …

  7. qiskit.org

    Our `library` within Qiskit Pulse contains helpful methods for building `Pulse`s. Let's take for example a simple Gaussian pulse -- a pulse with its envelope described by a sampled …

  8. qiskit.org

    "# Import Qiskit\n", "from qiskit import QuantumCircuit, transpile\n", "from qiskit_aer import AerSimulator\n", "\n", "# Construct quantum circuit\n", "circ = QuantumCircuit(2, 2)\n", …

  9. qiskit.org

    "This notebook demonstrates using Qiskit's VQE algorithm to plot graphs of the convergence path to ground state energy with a selected set of optimizers." ]

  10. qiskit.org

    "The Extended Simulator is a new method for classically simulating quantum circuits available in the latest release of [Qiskit-Aer](https://github.com/qiskit/qiskit-aer). \n",