Why does appear in a 3D mesh plot lines that should not be there?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Dani Tormo
am 27 Feb. 2015
Kommentiert: Mike Garrity
am 27 Feb. 2015
Following the first example in the mesh documentation:
figure;
[X,Y] = meshgrid(-8:.5:8);
R = sqrt(X.^2 + Y.^2) + eps;
Z = sin(R)./R;
mesh(Z);
It should appear this:
![](https://www.mathworks.com/matlabcentral/images/broken_image.png)
But when I run the code, it appears other lines that are not in the example. I do not know why this is happening.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/147349/image.png)
The funny thing is that if I copy the figure using Edit/Copy Figure it copies the image without those lines. Pretty strange.
0 Kommentare
Akzeptierte Antwort
Titus Edelhofer
am 27 Feb. 2015
Hi,
might be a problem with your OpenGl driver ... You could try either
set(gcf, 'Renderer', 'zbuffer')
or to switch from hardware opengl to software opengl:
opengl software
Let us know the outcome of either of those ...
Titus
2 Kommentare
Mike Garrity
am 27 Feb. 2015
I think that was a bug in how a particular family of graphics card drivers handled OpenGL index buffers. I think that it was nVidia, but I'm not sure I'm remembering correctly.
As for it not showing up when you copy the figure, my guess would be that you have 'Preserve information' set in your Copy Options. That uses painters instead of opengl.
Anyways, the opengl renderer in MATLAB R2014b contains a workaround for this issue. I'd be interested to know whether you still encounter it after upgrading.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Graphics Performance finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!