facing problem in plotting spectrogram.everytym an error occurs irrespective of the correct coding

1 view (last 30 days)
i am unable to plot the spectrogram of a given signal.please help me.i am using the following codes.... t=0:0.001:2; y=chirp(t,0,1,150); spectogram(y,256,1e3,256,250,'y axis'); subplot(2,1,1); title('Quadratic Chirp');
pls help..

Accepted Answer

Paulo Silva
Paulo Silva on 3 Jul 2011
t=0:0.001:2;
subplot(2,1,1); title('Quadratic Chirp');
y=chirp(t,0,1,150);
spectrogram(y,256,250,256,250,'yaxis');
  1. spectrogram misspelled
  2. wrong use of the subplot, it's before not after doing the drawing
  3. bad parameters on the spectrogram function
  6 Comments
abhinav priyanshu
abhinav priyanshu on 4 Jul 2011
thanx a ton..i worked..
btw this was the error..
??? Attempt to execute SCRIPT spectrogram as a function..
but now its working..thanx..:)
Paulo Silva
Paulo Silva on 4 Jul 2011
that's what you get when using the names of functions on scripts, bad idea, same goes for variables with same name of functions, bad idea!

Sign in to comment.

More Answers (0)

Categories

Find more on Time-Frequency Analysis in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!