Click here to Skip to main content
15,891,607 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
% t1 = 0:0.001:1;            % 2 secs @ 1kHz sample rate
% y1 = chirp(t1,0,1,500);     % Start @ DC,
%                           %   cross 150Hz at t=1 sec
% spectrogram(y1,256,250,256,1E3,'yaxis') %S = spectrogram(x,window,noverlap,nfft,fs)

% t2 = 0:1/2000:1;            % 2 secs @ 1kHz sample rate
% y2 = chirp(t2,500,1,1000);     % Start @ DC,
%                           %   cross 150Hz at t=1 sec
% spectrogram(y2,256,250,256,2E3,'yaxis'); %S = spectrogram(x,window,noverlap,nfft,fs)


% t3 = 0:1/3000:1;            % 2 secs @ 1kHz sample rate
% y3 = chirp(t3,1000,1,1500);     % Start @ DC,
%                           %   cross 150Hz at t=1 sec
% spectrogram(y3,256,250,256,3E3,'yaxis') %S = spectrogram(x,window,noverlap,nfft,fs)
Posted
Updated 26-Mar-10 0:21am
v2

1 solution

You should add some explanation of what you r problem is and then ask an actual question.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900