How to plot this diagram?

2 次查看(过去 30 天)
Kevin Doll
Kevin Doll 2021-11-12
评论: Kevin Doll 2021-11-13
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
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 个)

类别

Help CenterFile Exchange 中查找有关 Scatter Plots 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by