Plot scatter plot as shade

4 ビュー (過去 30 日間)
Shahriar Mahmud
Shahriar Mahmud 2021 年 10 月 21 日
コメント済み: Star Strider 2021 年 11 月 17 日
Hi,
I have the attached data (conc.mat) where each row corresponds to y axis value for a given x value(t=[0;30;60;120;300;600;900]). I am doing uncertainty analysis here. I also have the actual data set (single y value for single x value), which should construct a firm plot in the same graph. So, in summary, I should have a firm line from the actual data set which I have not shared here, but also I should be able to generate a shaded area from the attached data. The final product should be something like the attached file (Capture.JPG). Please suggest some solutions. Thanks.

採用された回答

Star Strider
Star Strider 2021 年 10 月 22 日
Try this —
LD = load('conc.mat');
conc = LD.conc;
t=[0;30;60;120;300;600;900];
figure
plot(t, conc)
hold on
shadeWidth = 0.01;
patch([t; flipud(t)], [min(conc,[],2)-shadeWidth; flipud(max(conc,[],2))+shadeWidth], [1 1 1]*0.5, 'FaceAlpha',0.25, 'EdgeColor','none')
hold off
Experiment to get different results.
.
  12 件のコメント
Shahriar Mahmud
Shahriar Mahmud 2021 年 11 月 17 日
Thanks again.
It looks ok to me for the time being.
Please see attached. As you can see the shaded portions created by the patch function (See code above you suggested) needs to be smoothened as well. Any suggestions?
Star Strider
Star Strider 2021 年 11 月 17 日
As always, my pleasure!
.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by