Change baseband floats to normalize at +/-1.0.

This commit is contained in:
Jared Boone 2016-02-14 12:38:50 -08:00
parent a5ed3b20b4
commit ef86848139
10 changed files with 35 additions and 26 deletions

View file

@ -72,7 +72,7 @@ constexpr size_t log_2(const size_t n, const size_t p = 0) {
float fast_log2(const float val);
float fast_pow2(const float val);
float complex16_mag_squared_to_dbv_norm(const float c16_mag_squared);
float mag2_to_dbv_norm(const float mag2);
inline float magnitude_squared(const std::complex<float> c) {
const auto r = c.real();