How do I make a stem plot in MATLAB?
30 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
WONG SIAN
le 18 Fév 2011
Réponse apportée : RAMA ARAVINTH
le 24 Juin 2021
How do I make an input sequence named n with a step of 1, ranging from -10 to 10?
Once I do that, how then do I make a stem plot of a function of n.
Then how to label both the x and y axes and add titles?
0 commentaires
Réponse acceptée
Paulo Silva
le 18 Fév 2011
n=-10:10;
a=0*n;
a(n>=0)=1;
stem(a)
xlabel('this is the x label')
ylabel('this is the y label')
title('this is the title')
0 commentaires
Plus de réponses (1)
RAMA ARAVINTH
le 24 Juin 2021
n=-10:10;
a=0*n;
a(n>=0)=1;
stem(a)
xlabel('this is the x label')
ylabel('this is the y label')
title('this is the title')
0 commentaires
Voir également
Catégories
En savoir plus sur Axis Labels 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!