Clear Filters
Clear Filters

plot a discrete signal

1 view (last 30 days)
ayman daraghmah
ayman daraghmah on 30 Sep 2015
Edited: Adam on 30 Sep 2015
[x,fs2,nbits2]= wavread('w.wav');
stem(x);
I want to plot a 20 samples section of x.

Accepted Answer

Adam
Adam on 30 Sep 2015
Edited: Adam on 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.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!