Skip to main contentIBM Quantum Documentation
This page is from an old version of Qiskit SDK Go to the latest version
Important

IBM Quantum Platform is moving and this version will be sunset on July 1. To get started on the new platform, read the migration guide.

qiskit.visualization.plot_bloch_multivector

plot_bloch_multivector(state, title='', figsize=None, *, rho=None, reverse_bits=False, filename=None)

GitHub

Plot the Bloch sphere.

Plot a sphere, axes, the Bloch vector, and its projections onto each axis.

Parameters

  • state (Statevector orDensityMatrix or ndarray) – an N-qubit quantum state.
  • title (str) – a string that represents the plot title
  • figsize (tuple) – Has no effect, here for compatibility only.
  • reverse_bits (bool) – If True, plots qubits following Qiskit’s convention [Default:False].

Returns

A matplotlib figure instance.

Return type

matplotlib.Figure

Raises

  • MissingOptionalLibraryError – Requires matplotlib.
  • VisualizationError – if input is not a valid N-qubit state.

Example

from qiskit import QuantumCircuit
from qiskit.quantum_info import Statevector
from qiskit.visualization import plot_bloch_multivector
%matplotlib inline
 
qc = QuantumCircuit(2)
qc.h(0)
qc.x(1)
 
state = Statevector.from_instruction(qc)
plot_bloch_multivector(state)
../_images/qiskit.visualization.plot_bloch_multivector_0_0.png
Was this page helpful?
Report a bug or request content on GitHub.