space pi 虚拟货币(space pi ETH)

Bitget下载

注册下载Bitget下载,邀请好友,即有机会赢取 3,000 USDT

APP下载   官网注册
import matplotlib.pyplot as pltfrom matplotlib import cm, colorsfrom mpl_toolkits.mplot3d import Axes3Dimport numpy as npfrom scipy.special import sph_harmphi = np.linspace(0, np.pi, 100)theta = np.linspace(0, 2*np.pi, 100)phi, theta = np.meshgrid(phi, theta)# The Cartesian coordinates of the unit spherex = np.sin(phi) * np.cos(theta)y = np.sin(phi) * np.sin(theta)z = np.cos(phi)m, l = 2, 3# Calculate the spherical harmonic Y(l,m) and normalize to [0,1]fcolors = sph_harm(m, l, theta, phi).realfmax, fmin = fcolors.max(), fcolors.min()fcolors = (fcolors - fmin)/(fmax - fmin)# Set the aspect ratio to 1 so our sphere looks sphericalfig = plt.figure(figsize=plt.figaspect(1.))ax = fig.add_subplot(111, projection='3d')ax.plot_surface(x, y, z,  rstride=1, cstride=1, facecolors=cm.seismic(fcolors))# Turn off the axis planesax.set_axis_off()plt.show()
球谐函数可视化

space pi 虚拟货币(space pi ETH)文档下载: PDF DOC TXT
文章来源: 肖肖
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至2384272385@qq.com举报,一经查实,本站将立刻删除。