Steps to compute correlogram of an input signal
1. Compute the autocorrelation function of narrowband_signal
2. Computes the Fast Fourier Transform (FFT) of the autocorrelation function (acf), resulting in corr_spectrum.
3. freq = (0:N-1)*(fs/N); Constructs a frequency vector (freq) corresponding to the FFT results, spanning from 0 Hz to just under the Nyquist frequency (fs/2). Where, N = Number of Samples in the Input Signal
4. Plots the magnitude of the FFT (abs(corr_spectrum)) against the frequency vector (freq), showing the correlogram of the narrowband signal.