我有数据集
1 1 1 0.07431
1 1 2 0.07176
1 1 3 0.06178
1 1 4 0.04691
...
27 27 44 0.07272
27 27 45 0.08129
其中前三列是X,Y,Z点;形成一个27x27x45点的网格。最后一列是电位(V)的值。
我想以一种方式绘制这个图,我可以看到潜在的最高/最低/数据在哪里 - 理想情况如下图所示。
我在使用MATLAB时非常业余,但我认为它可能是我正在寻找的解决方案。我已经安装了'Sliceomatic'插件,并尝试运行
sliceomatic(V,X,Y,Z)
但我收到错误消息
Error using axes
While setting property 'YLim' of class 'Axes':
Value must be a 1x2 vector of numeric type in which the second element is larger than the first and may be Inf
Error in sliceomaticfigure (line 45)
d.axmain = axes('units','normal','pos',[.2 .2 .6 .6],'box','on',...
Error in sliceomatic (line 200)
d = sliceomaticfigure(d,xmesh,ymesh,zmesh);
非常感谢任何其他建议/帮助!