I have signals that have a broad range of values. I want to compare them in a meaningful way. Just as an example, two of those signals might be: $$f(t)=100\cos(50t)+40\cos(60t) \quad g(t)=2\cos(50t)+0.8\cos(60t)$$
The coefficients of $f(t)$ will be much higher than the coefficients of $g(t)$, however, for the purpose of my comparison, those two signals are "equivalent", in that the dynamics are the same, and the difference is just in scaling coefficients.
In my problem I have a discrete signal, but I can compute the DCT (of FFT). The question is: how to normalize the coefficients, so that I can compare signals the way it was done above. What I thought of is this:
Let $a_n$ be the n coefficients obtained from applying DCT, then one simply normalize by $\dfrac{a_n}{\sum_n |a_n|}$. Is this mathematically sound? is there some theory on how to normalize the coefficients to capture the signal dynamics (meaning the relation of certain frequencies with respect to others)?
I'd appreciate if any can share some resources or can provide some insight.