Plot mean as a green line width of 3

20 ビュー (過去 30 日間)
timetry2
timetry2 2019 年 10 月 1 日
コメント済み: timetry2 2019 年 10 月 1 日
I have a line of code that looks like this
figure
y =Data.StrideTimeIntervals_15minTrial.PD(:,1);
subplot (3,4,1),plot (y)
title ('PD 1')
xlabel ('ISI #')
ylabel ('ISI (s)')
axis ([0,500,0.8,1.2])
And I'm wondering how to plot the mean line through the graph in the color green with a width of 3

回答 (1 件)

KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 10 月 1 日
編集済み: KALYAN ACHARJYA 2019 年 10 月 1 日
This?
subplot (3,4,1),plot (y,'g','linewidth',3);
I assumed y as a mean
  3 件のコメント
KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 10 月 1 日
Can you show me, how you calculate mean of the that signal? (Maths?)
timetry2
timetry2 2019 年 10 月 1 日
Sorry I am unsure, however, the data I am getting is from this website https://www.sciencedirect.com/science/article/abs/pii/S0966636218316667? and it is under supplementary Data, and it should be a matlab file that downloads to give you the same data I am looking at.

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

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by