How to clip surface plot to axes limits?
Ältere Kommentare anzeigen
Hello,
Does anybody know, how to really clip/truncate surface plot to axes limits? I.e. make it not displaying any data out of the limits? One of the possible ways is of course replace data out of limits with NaNs, but this makes saw-tooth pattern near limits, which does not look ok.
This question have already been asked long ago (<http://www.mathworks.co.uk/matlabcentral/newsreader/view_thread/294827>) by other user, but no answer have been given.
In MatLab documentation in Surface Properties there is a property Clipping, and it says 'Clipping to axes rectangle. When Clipping is on, MATLAB does not display any portion of the surface that is outside the axes rectangle.'. But it does not work (MatLab 7.12.0 (R2011a))!
At the same time, I also noticed that in the 3rd Figure of http://www.mathworks.co.uk/help/curvefit/exploring-and-customizing-plots.html (right top corner of it) surface plots are indeed very well clipped to axes! How??? No explanation is given.
So can anybody clarify this issue?
Thanks in advance,
Dima
3 Kommentare
Fida Hussain Rind Baloch
am 12 Feb. 2013
hello dear dmytro can you help me in image processing
Dmytro
am 12 Feb. 2013
Jelle Reichert
am 29 Aug. 2013
He Dmytro!
We are stuck with exactly the same problem. We do not have an idea how to solve it and indeed very strange that Matlab itself shows a perfectly clipped plot in the example. Have you found a solution yet?
Greetings, Jelle and Carlo
Antworten (3)
Sean de Wolski
am 12 Feb. 2013
0 Stimmen
The first step for any obscure graphics behavior should be to cycle through all three renderers.
1 Kommentar
Dmytro
am 12 Feb. 2013
Nico
am 16 Mai 2014
0 Stimmen
Hello,
according to this post from 2009, Matlab does not have any clipping functionality for 3-D plots: http://www.mathworks.com/matlabcentral/answers/98023-why-does-clipping-fail-to-work-with-matlab-3-d-plots That's a pity, since the quality of 3D plots (e.g., for scientific publications) would be much better with proper clipping.
I would really appreciate it if Mathworks implemented proper clipping of 3D plots in a future version of Matlab.
Btw: I am still using 2013a, could it be that 3d clipping is already possible with the newest version?
Regards, Nico.
Vladimir Divic
am 23 Mai 2014
Only way I found to do it is to clip figure manually.
E.g. plot of uncliped data in range -1 to 1 in both x and y axis is
x = -1:0.01:1;
y = -1:0.01:1;
[X,Y]=meshgrid(x,y);
Z = X.^2-Y.^2;
surf(X,Y,Z,'EdgeColor','none')
To clip data to range from 0 to 1 I use interp2 function.
clpx = 0:0.01:1;
clpy = 0:0.01:1;
[clpX,clpY]=meshgrid(clpx,clpy);
clpZ = interp2(X,Y,Z,clpX,clpY);
surf(clpX,clpY,clpZ,'EdgeColor','none')
I hope this helps,
Greetings, Vlado
Kategorien
Mehr zu Graphics Performance finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!