Plot mean as a green line width of 3
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
KALYAN ACHARJYA
le 1 Oct 2019
Modifié(e) : KALYAN ACHARJYA
le 1 Oct 2019
This?
subplot (3,4,1),plot (y,'g','linewidth',3);
I assumed y as a mean
3 commentaires
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
