代码:
b=qt.Bloch(axes=a)
pnt = [px[:],py[:],pz[:]]
b.add_points(pnt)
# b.fig = plt.subplot(326)
plt.title('Bloch sphere')
此代码创建小起始图,但它是空的。 See screenshot of the result
将Bloch球体显示为单独的图形可以正常工作。
答案 0 :(得分:0)
在show()之前需要渲染功能。 必须同时为创建Bloch实例和调用render分配参数(图和轴)。
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
fig = plt.figure()
ax = subplot('211', projection='3d')
b = qt.Bloch(fig=fig, axes=ax)
b.render(fig=fig, axes=ax)
plt.show()