2

我试图弄清楚如何使用 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?

谢谢!

4

1 回答 1

2

您可以提供控制颜色的矩阵作为fill_z关键字。它不适用于所有后端,但请尝试使用 plotljys 和 pyplot。

于 2017-06-17T08:37:02.143 回答