我使用 Matlab 生成各种图表的统计代码。图形类型范围从简单的饼图和条形图到 3D 直方图格。
现在我们想要一个漂亮的 GUI 来配合软件。我们有一个 Matlab GUI 原型,但 Matlab 的 GUI 存在许多问题,因此我们希望转向更强大的 GUI。我最好的选择似乎是 PySide + matplotlib,但到目前为止我还没有找到绘制 3D 点阵的方法。matlab 代码使用轮廓切片。matplotlib 中似乎没有类似的调用。那么,谁能帮我弄清楚如何使用 matplotlib 获得这样的图表?到目前为止,我唯一的想法是绘制 6 个曲面来制作一个立方体。
实际上,也欢迎对其他 GUI/图形库组合的建议。基本统计代码是 C++,因此 Python 只是众多选项之一。从我在 StackOverflow 上看到的一些答案来看,matplotlib 的 3D 速度可能慢得让人无法接受。也许R会更好?
这是matlab代码:
clf
xlo = -1.800000e+01;
xhi = 1.000000e+01;
ylo = 1.000000e+01;
yhi = 3.000000e+01;
zlo = -1.000000e+03;
zhi = 1.000000e+03;
X=zeros(16,16,16);
Y=zeros(16,16,16);
Z=zeros(16,16,16);
V=zeros(16,16,16);
% fill in X, Y, Z, and V huge amount of text
xt = [-1.800000e+01:2.800000e-01:1.000000e+01];
yt = [1.000000e+01:2.000000e-01:3.000000e+01];
zt = [-1.000000e+03:2.000000e+01:1.000000e+03];
isoval = -1.428280e+01;
h = patch(isosurface(X,Y,Z,V,isoval),...
'FaceColor', 'blue', ...
'EdgeColor', 'none', ...
'AmbientStrength', 0.2, ...
'SpecularStrength', 0.7, ...
'DiffuseStrength', 0.4);
isonormals(X,Y,Z,V,h);
patch(isocaps(X,Y,Z,V,isoval), ...
'FaceColor', 'interp', ...
'EdgeColor', 'none');
axis([xlo xhi ylo yhi zlo zhi])
daspect([2.800000e+01,2.000000e+01,2.000000e+03])
set(gca,'linewidth',2)
set(gca,'fontweight','bold')
set(gca,'fontsize',12)
grid on
box on
colormap('default'); colorbar
view(3)
set(gcf,'Renderer','zbuffer')
lighting phong
cin = 'n';
if (cin == 'y')
xin = questdlg('Axis to slide through ?', 'Axis', 'X', 'Y', 'Z', 'X');
xin = lower(xin);
for i = 1 : 101
if gcf ~= plotFigure
return
end
if (xin == 'y')
h = contourslice(X,Y,Z,V,xt(i),[],[],101);
elseif (xin == 'x')
h = contourslice(X,Y,Z,V,[],yt(i),[],101);
elseif (xin == 'z')
h = contourslice(X,Y,Z,V,[],[],zt(i),101);
end
axis([-1.8000e+01 1.0000e+01 1.0000e+01 3.0000e+01 -1.0000e+03 1.0000e+03 -8.6774e+01 4.2066e+02])
set(gca,'linewidth',2)
set(gca,'fontweight','bold')
set(gca,'fontsize',12)
grid on
box on
view(3)
set(h, 'Linewidth', 10)
colorbar
pause(0.3)
if (i < 101)
clf
end
end
end