Showing only part of markers that overflow off the edges of a plot?

조회 수: 22 (최근 30일)
Shilpa Raja
Shilpa Raja 2016년 4월 20일
댓글: Shai Asher 2024년 1월 15일
Hi, I am trying to make a graph look nice by increasing the size of the markers. At the size of marker that looks the best, the marker actually flows off the graph and covers the numbers. In origin and other softwares, you can set it so it only shows the part of the marker on the edge that does not extend outside the edge. Is there a way to do this in MATLAB (I.e., if a marker flows off the edge of a plot window, tell MATLAB to only display half the marker or the part within the plot window)? In the abovementioned other softwares you can also set markers to have a 3D look or gradient color. Is it possible to do this in MATLAB?

답변 (2개)

Mike Garrity
Mike Garrity 2016년 4월 20일
No there isn't a simple way to do that type of clipping with markers. In fact, you wouldn't believe how much work we do to get markers to do anchor point clipping.
If you really need this (and the 3d or gradient look), then your best bet would probably be to write a function that made markers out of "regular" geometry. Here's a really simple example:
function my_markers(x,y,w)
[sx,sy,sz] = sphere;
z = zeros(size(x));
npts = size(x,1);
for i=1:npts
surface(x(i)+sx*w/2,y(i)+sy*w/2,z(i)+sz*w/2, ...
'FaceColor',[.929 .694 .125],'EdgeColor','none', ...
'FaceLighting','gouraud')
end
I can use that function like this:
my_markers(randn(100,1),randn(100,1),.5)
xlim([-2 2])
ylim([-2 2])
axis equal
camlight
%

Alexander Weitzel
Alexander Weitzel 2022년 11월 7일
Even though this question is already quite old, I can present a simple and viable solution for the problem of overflowing markers.
Assuming you are interested in a clean picture for an article or a dissertation, simply set 'ClippingStyle' to 'rectangle' and print the figure to pdf, parts of markers lying outside of axes are now clipped.
set(gca,'ClippingStyle','rectangle');
print(gcf,'foo.pdf','-dpdf','-r300','-bestfit');
  댓글 수: 1
Shai Asher
Shai Asher 2024년 1월 15일
hi,
I have a similar problem with a 'fill' object. It spills over only when the figure is printed to a file (see attached).
the solution that you suggested doesn't seem to solve the matter in this case.
any other suggestions?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by