How to indicate p < 0.05 interval in a line graph?

5 ビュー (過去 30 日間)
James Chen
James Chen 2022 年 5 月 27 日
編集済み: Nihal Reddy 2023 年 2 月 15 日
Hi, I am new to MATLAB, I wonder how can we use MATLAB to plot graphs like this one:
where the small orange rectangles inside the plotting area indicate p < 0.05; line width reflects ± SEM.

採用された回答

Nihal Reddy
Nihal Reddy 2022 年 6 月 1 日
編集済み: Nihal Reddy 2023 年 2 月 15 日
From my understanding you want to plot a graph like the one in the image shared. For plotting graphs which fill the areas between the curves you can use “area” function.
You can refer to the following sample example-
x = [0.25 0.5 0.75 1];
Y = [0.4 0.2; 0.5 0.7; 0.1 0.9; 0.4 0.3];
area(x,Y)
xlabel('Time(s)')
ylabel('Representation Similarity')
For more information related to the “area” function you can use the following MATLAB documentation link-

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

タグ

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by