hello
to focus in the lower frequency range, you have to resample (decimate) your time data
looks like you could easily decimate by factor of 10 and plus
this must be done just before you do the spectrogram
help decimate
decimate Resample data at a lower rate after lowpass filtering.
Y = decimate(X,R) resamples the sequence in vector X at 1/R times the
original sample rate. The resulting resampled vector Y is R times
shorter, i.e., LENGTH(Y) = CEIL(LENGTH(X)/R). By default, decimate
filters the data with an 8th order Chebyshev Type I lowpass filter with
cutoff frequency .8*(Fs/2)/R, before resampling.



