本文整理汇总了Python中matplotlib.axes.Axes.plot_wireframe方法的典型用法代码示例。如果您正苦于以下问题:Python Axes.plot_wireframe方法的具体用法?Python Axes.plot_wireframe怎么用?Python Axes.plot_wireframe使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类matplotlib.axes.Axes
的用法示例。
在下文中一共展示了Axes.plot_wireframe方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: center_histogram_2d
# 需要导入模块: from matplotlib.axes import Axes [as 别名]
# 或者: from matplotlib.axes.Axes import plot_wireframe [as 别名]
def center_histogram_2d(par1, par2):
fig22 = figure(22)
ax22 = Axes(fig22, [.1, .1, .8, .8])
fig22.add_axes(ax22)
div = 10.
ll1 = l_dict[par1]
ll2 = l_dict[par2]
ss1 = ss_dict[par1]
ss2 = ss_dict[par2]
H, xedges, yedges = histogram2d(ss1[0], ss2[0], bins = [linspace(-ll1 / 2., ll1 / 2., div + 1) , linspace(-ll2 / 2., ll2 / 2., div * ll1 / ll2 + 1)], normed = 0)
#extent = [-ll1 / 2., ll1 / 2., -ll2 / 2., ll2 / 2.]#[xedges[0], xedges[-1], yedges[0], yedges[-1]]
#im = imshow( H, extent=extent )#'binary', cmap='jet'
#im.set_interpolation( 'bilinear' )
#colorbar()
ax22 = Axes3D(fig22, [.1, .1, .8, .8])
x = (xedges[range(0, len(xedges) - 1)] + xedges[range(1, len(xedges))]) / 2.
y = (yedges[range(0, len(yedges) - 1)] + yedges[range(1, len(yedges))]) / 2.
#ax10.scatter3D( xedges.ravel(), yedges.ravel(), H.ravel() )
xx = outer(x, ones(len(y)))
yy = outer(ones(len(x)), y)
ax22.plot_wireframe(xx, yy, H)#, rstride=1, cstride=1
#H, xedges, yedges = histogram2d( ss1[0], ss2[0], bins=[div, div], normed=0 )
#ax22.set_xticks( arange( -ll1 / 2., ll1 / 2., ll1 / 10. ) )
#ax22.set_title( 'histogram of fibers centroid in 2D -- sim' )
#ax22 = Axes3D( fig22 )
#X, Y, Z = xedges, yedges, H
#ax22.plot3D( X.ravel(), Y.ravel(), Z.ravel(), 'ro' )
#ax22.contour3D( X[:-1], Y[:-1], Z )
#ax22.plot_wireframe( X, Y, Z, rstride=6, cstride=6, color='blue', linewidth=0.5 )
#ax22.plot_surface( X[:-1], Y[:-1], Z )
draw()
return 0