mirror of
https://github.com/aicodix/modem.git
synced 2026-04-27 14:30:34 +00:00
do lower number of tone reservation iterations
This commit is contained in:
parent
3755c666aa
commit
a45ae8a63b
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ struct Encoder : public Common
|
|||
}
|
||||
void tone_reservation()
|
||||
{
|
||||
for (int n = 0; n < 100; ++n) {
|
||||
for (int n = 0; n < 10; ++n) {
|
||||
int peak = 0;
|
||||
for (int i = 1; i < symbol_len; ++i)
|
||||
if (norm(tdom[peak]) < norm(tdom[i]))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue