python的图形_python 图形

importnumpy as npimportmatplotlib.pyplot as pltfrom mpl_toolkits.mplot3d importAxes3D

fig=plt.figure()

ax=Axes3D(fig)#X Y value

X = np.arange(-4,4,0.25)

Y= np.arange(-4,4,0.25)

X,Y=np.meshgrid(X,Y)

R= np.sqrt(X**2 + Y**2)#hight value

Z =np.sin(R)

ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=plt.get_cmap('rainbow'))"""============= ================================================

Argument Description

============= ================================================

*X*, *Y*, *Z* Data values as 2D arrays

*rstride* Array row stride (step size), defaults to 10

*cstride* Array column stride (step size), defaults to 10

*color* Color of the surface patches

*cmap* A colormap for the surface patches.

*facecolors* Face colors for the individual patches

*norm* An instance of Normalize to map values to colors

*vmin* Minimum value to map

*vmax* Maximum value to map

*shade* Whether to shade the facecolors

============= ================================================"""

#I think this is different from plt12_contours

ax.contourf(X, Y, Z, zdir='z', offset=-2, cmap=plt.get_cmap('rainbow'))"""========== ================================================

Argument Description

========== ================================================

*X*, *Y*, Data values as numpy.arrays

*Z*

*zdir* The direction to use: x, y or z (default)

*offset* If specified plot a projection of the filled contour

on this position in plane normal to zdir

========== ================================================"""ax.set_zlim(-2, 2)

plt.show()

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值