plot a discrete signal

3 vues (au cours des 30 derniers jours)
ayman daraghmah
ayman daraghmah le 30 Sep 2015
Modifié(e) : Adam le 30 Sep 2015
[x,fs2,nbits2]= wavread('w.wav');
stem(x);
I want to plot a 20 samples section of x.

Réponse acceptée

Adam
Adam le 30 Sep 2015
Modifié(e) : Adam le 30 Sep 2015
stem(x(1:20))
will plot the first 20 samples of x, assuming it has that many. Or
stem(x(345:364))
etc, to plot some other arbitrary section of 20 samples.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by