qiskit.visualization.plot_bloch_vector¶
-
plot_bloch_vector
(bloch, title='', ax=None, figsize=None, coord_type='cartesian')[ソース]¶ Plot the Bloch sphere.
Plot a sphere, axes, the Bloch vector, and its projections onto each axis.
- パラメータ
bloch (list[double]) – array of three elements where [<x>, <y>, <z>] (cartesian) or [<r>, <theta>, <phi>] (spherical in radians) <theta> is inclination angle from +z direction <phi> is azimuth from +x direction
title (str) – a string that represents the plot title
ax (matplotlib.axes.Axes) – An Axes to use for rendering the bloch sphere
figsize (tuple) – Figure size in inches. Has no effect is passing
ax
.coord_type (str) – a string that specifies coordinate type for bloch (cartesian or spherical), default is cartesian
- 戻り値
A matplotlib figure instance if
ax = None
.- 戻り値の型
Figure
- 例外
ImportError – Requires matplotlib.
サンプル
from qiskit.visualization import plot_bloch_vector %matplotlib inline plot_bloch_vector([0,1,0], title="New Bloch Sphere")