golib
0.5
|
#include <gosignalstat.h>
Public Member Functions | |
goDouble | getMean (goSignal3D< T > &signal) |
goDouble | getMeanFast (goSignal3D< T > &signal) |
goDouble | getDeviation (goSignal3D< T > &signal, goDouble __mean) |
goDouble | getEnergy (goSignal3D< T > &signal) |
goDouble | getMean () |
goDouble | getDeviation () |
goDouble | getEnergy () |
Signal statistics. DEPRECATED, use functions in gosignalhelper.h. Currently supported signal types:
|
inline |
goDouble goSignalStat< T >::getDeviation | ( | goSignal3D< T > & | signal, |
goDouble | __mean | ||
) |
Calculates the deviation of a goSignal3D and stores it internally.
signal | goSignal3D of which the deviation is to be calculated |
|
inline |
goDouble goSignalStat< T >::getEnergy | ( | goSignal3D< T > & | signal | ) |
Calculates the energy of a goSignal3D and stores it internally. The energy of a signal is defined as
. This function computes
with
being the signal samples.
signal | goSignal3D of which the energy is to be calculated |
|
inline |
goDouble goSignalStat< T >::getMean | ( | goSignal3D< T > & | signal | ) |
Calculates the mean value of a goSignal3D and stores it internally. Uses a lot of divisions. If possible in special cases, use the getMeanFast() method.
signal | goSignal3D of which the mean value is to be calculated |
goDouble goSignalStat< T >::getMeanFast | ( | goSignal3D< T > & | signal | ) |
Same as getMean(goSignal3D<T>&), but faster. It accumulates and then divides, which means it does not work for large signals and in any case when the signal values were accumulating to result in an overflow. Uses significantly less divisions.