我正在尝试使用matplotlib来显示一些3d perlin噪音。我已经读过voxels
Axes3DSubplot
方法可以用来简单地显示值。但是,当我尝试调用ax.voxels(voxels, facecolors=colors, edgecolor='k')
时,它会抛出异常AttributeError: 'Axes3DSubplot' object has no attribute 'voxels'
。这是我的代码:
import noise
import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
x, y, z = np.indices((8,8,8))
voxels = np.zeros((8,8,8), dtype=np.bool)
for xp in range(8):
for yp in range(8):
for zp in range(8):
voxels[xp,yp,zp] = True if abs(noise.pnoise3(xp/8,yp/8,zp/8)) > 0.5 else False
colors = np.empty(voxels.shape, dtype=object)
colors[voxels] = 'green'
fig = plt.figure()
ax = fig.gca(projection='3d')
ax.voxels(voxels, facecolors=colors, edgecolor='k') #EXCEPTION
plt.show()
我的python版本是3.6.2(Anaconda 64位)。我的matplotlib版本是2.0.2。我使用了ipynb(module://backend_interagg
)和Qt5Agg
后端,它们都给出了同样的问题。我正在运行Windows 10。
答案 0 :(得分:3)
voxels
方法has been introduced in matplotlib 2.1。
任何早期版本的matplotlib都没有此方法。
答案 1 :(得分:1)