| 132 | } |
| 133 | |
| 134 | void |
| 135 | SNREstimator::setBps(unsigned int bps) |
| 136 | { |
| 137 | if (this->bps != bps) { |
| 138 | this->bps = bps; |
| 139 | this->sigma = SNR_ESTIMATOR_DEFAULT_SIGMA; |
| 140 | this->intervals = 1 << bps; |
| 141 | this->hx = 1.f / this->length; |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | void |
| 146 | SNREstimator::feed(std::vector<unsigned int> const &history) |