Plot mean as a green line width of 3
조회 수: 13 (최근 30일)
이전 댓글 표시
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
댓글 수: 0
답변 (1개)
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
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
