I'm working on an ITU BS.1770 loudness scanner, which requires calculating the mean square (not root mean square) of a signal. I could of course just re-square the output from using SignalRms, but I feel it'd be nicer to allow SignalRms to return it, since it'd be an intermediate product of calculating the RMS.
Just saw that this is indeed a feature of the Rms struct in dasp_signal! I Missed it since I was only looking at the SignalRms trait, but it's specific to the struct itself.
I'm working on an ITU BS.1770 loudness scanner, which requires calculating the mean square (not root mean square) of a signal. I could of course just re-square the output from using SignalRms, but I feel it'd be nicer to allow
SignalRms
to return it, since it'd be an intermediate product of calculating the RMS.