Changeset 54 for birds/domilbirds.m
- Timestamp:
- 06/14/13 16:26:53 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
birds/domilbirds.m
r53 r54 7 7 8 8 [S,f,t] = spectrogram(signal,512,256,[],fs); 9 fmax = 256;%Defined in paper 9 10 10 11 figure(2); clf; showspec(S,f,t); 12 [S,f,t] = spectrogram(signal,512,256,fmax,fs); 13 14 figure(2); imagesc(t,f,abs(S)); 15 axis xy; xlabel('time (s)'); ylabel('freq.'); 16 11 17 figure(3); clf; showspec(imag(S), f,t); 12 18 … … 21 27 22 28 29 30 %% 31 s2 = whiten(S,fmax); 32 figure(4); imagesc(t,f,s2); 33 axis xy; xlabel('time (s)'); ylabel('freq.');
Note: See TracChangeset
for help on using the changeset viewer.