3

我最近开始使用 QuTip for Python。我想使用 绘制 Bloch 球体中两级系统的演变qutip.Bloch(),但我不知道如何将这样的图绘制为连续线。

这是我目前使用的代码:

bola = Bloch()
bola.add_points(pnts)
bola.point_marker = ['o']
bola.point_size=[8]
bola.show()

当然,我得到一个带有很多离散点的标准布洛赫球体。有没有办法用直线连接点?

4

1 回答 1

1

将方法更改为行:

bola.add_points(pnts,meth='l')

于 2015-01-29T15:46:51.670 回答