我试图弄清楚如何使用 Plots.jl 创建曲面图。我可以从二维网格创建一个球面,如下所示:
using Plots
plotlyjs()
# Read the theta and phi angles from file...
x2d = sind(theta2d).*cosd(phi2d)
y2d = sind(theta2d).*sind(phi2d)
z2d = cosd(theta2d)
surface(x2d,y2d,z2d)
但是,我想让表面颜色由一个单独的矩阵控制,如下图(用 Python 制作)。
from mayavi import mlab
# Create/read plot data...
mlab.figure(bgcolor=(1,1,1), fgcolor=(0.,0.,0.))
mlab.mesh(x2d, y2d, z2d, scalars=p2d, colormap='jet', vmax=5, vmin=-35)
也许我应该直接使用 Python 绘图函数?或者直接使用 GLVisualize?
谢谢!