Plot mean as a green line width of 3
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (1)
KALYAN ACHARJYA
am 1 Okt. 2019
Bearbeitet: KALYAN ACHARJYA
am 1 Okt. 2019
This?
subplot (3,4,1),plot (y,'g','linewidth',3);
I assumed y as a mean
3 Kommentare
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
