Python QuTip:在Bloch球体中绘制整行

时间:2014-09-17 19:04:36

标签: python qutip

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

这是我目前使用的代码:

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

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

1 个答案:

答案 0 :(得分:0)

将方法更改为行:

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