MATLAB - 等值面函数,不规则坐标(输入网格不是有效的 MESHGRID)

MATLAB - Isosurface function, irregular coordinates (Input grid is not a valid MESHGRID)

我有一个来自物理模型的数据文件,它显示了物体周围某个 material 的密度。数据文件采用球坐标,并重新调整为原始尺寸(Theta、Phi、R 和密度)。 Sph2cart 用于从球坐标转换为笛卡尔 (x,y,z) 坐标。为了可视化物体周围的不同密度,我在 MATLAB 中找到了等值面函数(示例:http://www.mathworks.com/matlabcentral/answers/110977-3d-density-plot-multiple-isosurfaces-on-the-same-plot)。

这是我目前拥有的代码:

input = importdata( 'denNa20.dat' );
input(1,:)=[]; 

theta = reshape(input(:,3),200,20,40);
phi = reshape(pi/2 - input(:,2),200,20,40);
r = reshape(input(:,1),200,20,40);
density = reshape(input(:,4),200,20,40);

[x,y,z] = sph2cart(theta,phi,r);

% This has ofcourse the complete wrong dimensions but then it works
% [x,y,z] = meshgrid(1:1:20,1:1:200,1:1:40);

p = patch(isosurface(y,x,z,density,0.00001));
isonormals(x,y,z,density,p);
set(p,'FaceColor','red','EdgeColor','none','FaceAlpha',0.15);
daspect([1 1 1])
view(3)
grid on
camlight; lighting phong

当我 运行 代码时,我收到以下错误:

使用 interp3 时出错(第 146 行) 输入网格不是有效的 MESHGRID。

等值线错误(第 75 行) n(:,1)=interp3(x, y, z, nx, verts(:,1), verts(:,2), verts(:,3));

data_import_plot 中的错误(第 16 行) 等法线(x、y、z、密度、p);

如果我使用非常简单的 x、y、z 坐标(检查代码中的 %)创建自己的网格,它就可以工作。我不知道我做错了什么。我希望有人能帮助我。

干杯, 耶伦

P.S。如果需要,可以从此 link https://www.dropbox.com/s/msphgmg2oyi91cx/denNa20.dat?dl=0

下载数据文件

我发现问题是等值面不接受不规则的 x、y 和 z 坐标。这就是我发现的解决方案。我使用 scatteredInterpolant 对密度进行插值,然后创建了我自己的网格。

input = importdata( 'denNa20.dat' );
input(1,:)=[]; 

[x,y,z] = sph2cart(input(:,3),pi/2 - input(:,2),input(:,1));
density = input(:,4);

F = scatteredInterpolant(x,y,z,density);
xRange = linspace(min(x),max(x),75);
yRange = linspace(min(y),max(y),75);
zRange = linspace(min(z),max(z),75);
[x,y,z] = meshgrid(xRange,yRange,zRange);
density = F(x,y,z);

axis([-5000,5000,-5000,5000,-5000,5000])

p = patch(isosurface(x,y,z,density,0.00001));
isonormals(x,y,z,density,p);
set(p,'FaceColor','red','EdgeColor','none','FaceAlpha',0.50);
daspect([1 1 1])
view(3)
grid on
camlight; lighting phong