I want the code for demonstration of the spectrogram, narrow-band and wide-band.
I know that there is a function 'specgram'.
specgram(signal, nfft, fs, window, nooverlap);
But my question is that what should be the values of parameters 'window', 'nooverlap' and 'nfft' in narrow-band and wide-band spectrogram.
singal and fs will come from
[signal, fs, bits]=wavread('wavfile.wav');
what about others ?