| 161 | } |
| 162 | |
| 163 | void |
| 164 | DopplerDialog::giveSpectrum(std::vector<SUCOMPLEX> &&data) |
| 165 | { |
| 166 | this->data = std::move(data); |
| 167 | this->ui->waveform->setData(&this->data); |
| 168 | this->ui->waveform->setRealComponent(true); |
| 169 | this->ui->waveform->setOriginX(-static_cast<qint64>(this->data.size()) / 2.); |
| 170 | this->ui->waveform->setSampleRate(this->fs); |
| 171 | } |
| 172 | |
| 173 | DopplerDialog::~DopplerDialog() |
| 174 | { |
no test coverage detected