Help with Plotting the Envelope of a Scatter Plot in MATLAB

Hello everyone,
I'm trying to plot the envelope of a scatter plot in MATLAB. However, when I use the envelope function, it returns the same plot without highlighting the upper or lower bounds.
This plot was created using a scatter plot, and when I attempt to filter it to retain only the extremum values, I end up with just a single slice of the data.
Has anyone encountered a similar issue or knows how I could extract and plot the envelope correctly (in red), as shown in the reference image?
Thanks in advance!

댓글 수: 2

Zac Lee
Zac Lee 2025년 8월 4일
이동: Star Strider 2025년 8월 4일
Dear @Star Strider, here my x,y datas. The code is simply the classical roots of a 2nd degree polinomial equation.
Catalytic
Catalytic 2025년 8월 4일
편집: Catalytic 2025년 8월 4일
The sampling density is very non-uniform, and makes it hard to see why the red boundary is appropriate in certain places. Why couldn't someone assume the following boundary drawing be valid? You need to achieve denser sampling throughout the shape for any automatic boundary detector to have any hope.

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

 채택된 답변

load xy
x=x(:); y=y(:);
[G,yg]=findgroups(y);
xmin=splitapply(@min,x,G);
xmax=splitapply(@max,x,G);
[yg,is]=sort(yg);
xmin=xmin(is);
xmax=xmax(flip(is));
X=[xmin;xmax]; Y=[yg;flip(yg)];
scatter(x,y,'.');hold on
plot(X,Y,'r-x'); hold off

추가 답변 (1개)

Catalytic
Catalytic 2025년 8월 4일
편집: Catalytic 2025년 8월 4일
load xy
x=x(:)/1000; y=y(:);
r=median(diff(unique(y)));
shp=alphaShape([x,y],r*.8);
[~,P]=boundaryFacets(shp);
scatter(x,y,'.b'); hold on
plot(P(:,1),P(:,2),'r.--'); hold off

댓글 수: 4

Dear @Catalytic, thank you verymuch for your help
isn't there anyway to do not scale the values? I'm trying to combine both this solution and the one from @Matt J, in order to get the right pic.
If you increase the sampling density in the region y<0.005, as I mentioned in my comment above, then there would be not need to incorporate a second method.
load xy
x=x(:); y=y(:);
r=median(diff(unique(y)));
s=1000;
shp=alphaShape([x/s,y],r*.8);
[~,P]=boundaryFacets(shp);
P(:,1)=P(:,1)*s;
scatter(x,y,'.b'); hold on
plot(P(:,1),P(:,2),'r.--'); hold off
Perfect! Tnak you verymuch for your help

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

카테고리

도움말 센터File Exchange에서 Scatter Plots에 대해 자세히 알아보기

제품

질문:

2025년 8월 4일

댓글:

2025년 8월 5일

Community Treasure Hunt

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

Start Hunting!

Translated by