我在使用WindowsXP的Matlab2010b中遇到了一些奇怪的问题。
当我试图绘制下面的补丁时,我得到的补丁不是全部填充的,而是一些空白部分。
如果将渲染器设置为“painters”(请参见下文),则可以解决此问题,
但是我不能改变补丁的透明度。
以前有人遇到过类似的问题吗有办法吗?

x = [734608.791666667;734608.843750000;734609;734609.041666667;734609.086805556;734609.125000000;734609.250000000;734609.277777778;];
y = [85.7847149493030;95.4499999983124;96.4800000077516;112.549999984098;109.949999996456;118.299999970804;120.450000002981;112.600000008944;];

figure;
set(gcf, 'Renderer', 'opengl');
patch(x, y, 'r');
title('this plot is with wrong vertices positions');

figure;
set(gcf, 'Renderer', 'painters');
patch(x, y, 'r', 'FaceAlpha', 0.1);
title('this plot is OK, but renderer ignores the transparency');

figure;
set(gcf, 'Renderer', 'opengl');
patch(x, y, 'r', 'FaceAlpha', 0.1);
title('this plot is with wrong vertices positions, but with transparency');

最佳答案

这个问题似乎源于MATLAB->OpenGL渲染管道(我的猜测)中的浮点精度。
如果将x操作为:

x = [734608.791666667;734608.843750000;734609;734609.041666667;734609.086805556;734609.125000000;734609.250000000;734609.277777778;];
x = (x - mean(x));

情节似乎很好。

10-04 21:17