Hi together,
i would like to plot a diagram like the one shown in matlab. But i dont find a easy solution. Do you have any tipps? I know the scatter plot like in the first picture, for me it would be sufficient if i could only plot the "bubbles" like shown in the 2. picture.
A solution to specify 4-6 points with x/y-coordinates for each corner and plot these as one area would me nice. Is there a solution?
Thanks in advance,
Kevin

 채택된 답변

Dave B
Dave B 2021년 11월 12일

1 개 추천

A good function where you specify some co-ordinates and get a filled region is fill (I did a very bad job replicating your shape!)
x=[1 2 4 100 150 30 5 1.5]/100;
y=[1 10 100 800 600 100 10 1];
fill(x,y,'b')
set(gca,'YScale','log','XScale','log','XLim',[.01 1000])
grid on

추가 답변 (0개)

카테고리

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

제품

릴리스

R2020b

질문:

2021년 11월 12일

댓글:

2021년 11월 13일

Community Treasure Hunt

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

Start Hunting!

Translated by