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

1 件のコメント

Kevin Doll
Kevin Doll 2021 年 11 月 13 日
Thanks a lot!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

製品

リリース

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