So I want to plot the amplitudes of the taps of an equalizer like this:
But all of my equalizer tap amplitudes are in -dBc(minus dB carrier). My current code looks like this:
self.ui.mplCoeff.canvas.ax.clear()
rect = 1,24,-100,0
self.ui.mplCoeff.canvas.ax.axis(rect)
self.ui.mplCoeff.canvas.ax.bar(tapIndices,tapAmplitudedBc)
And the result is shown below,which is basically the inverse of what I need. Has anyone got a clue?