from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import numpy as np
fig = plt.figure()
ax = fig.gca(projection='3d')
# draw sphere
u, v = np.mgrid[0:2*np.pi:50j, 0:np.pi:50j]
x = np.cos(u)*np.sin(v)
y = np.sin(u)*np.sin(v)
z = np.cos(v)
# alpha controls opacity
ax.plot_surface(x, y, z, color="g", alpha=0.3)
# a random array of 3D coordinates in [-1,1]
bvecs= np.random.randn(20,3)
# tails of the arrows
tails= np.zeros(len(bvecs))
# heads of the arrows with adjusted arrow head length
ax.quiver(tails,tails,tails,bvecs[:,0], bvecs[:,1], bvecs[:,2],
length=1.0, normalize=True, color='r', arrow_length_ratio=0.15)
ax.set_xlabel('X-axis')
ax.set_ylabel('Y-axis')
ax.set_zlabel('Z-axis')
ax.set_title('b-vectors on unit sphere')
plt.show()
3条答案
按热度按时间8i9zcol21#
它有点复杂,但你可以通过以下代码绘制所有对象:
ki1q1bka2#
对于只画箭头,有一个更简单的方法:
实际上,箭图可以用来一次绘制多个向量。用法如下:- [来自http://matplotlib.org/mpl_toolkits/mplot3d/tutorial.html?highlight= quiet #mpl_toolkits.mplot3d.Axes3D.箭筒]
箭图(X,Y,Z,U,V,W,**kwargs)
参数:
**X、Y、Z:**箭头位置的x、y和z坐标
**U、V、W:**箭头向量的x、y和z分量
参数可以是类数组或标量。
关键字参数:
长度:[1.0|float]每个箭袋的长度,默认为1。0,单位与坐标轴相同
arrow_length_ratio:[0.3|float]箭头与箭袋的比例,默认为0。3
pivot:[ 'tail'|‘中’|'tip' ]箭头位于网格点的部分;箭头围绕该点旋转,因此称为枢轴。默认值为'tail'
normalize:[False|True]当为True时,所有箭头的长度都相同。默认值为False,其中箭头的长度取决于u、v、w的值。
aurhwmvo3#
我的答案是上述两种方法的合并,并扩展到绘制用户定义的不透明度和一些注解的球体。它发现应用在磁共振图像(MRI)的球体上的b向量可视化。希望你觉得有用: