mirror of
https://github.com/aicodix/modem.git
synced 2026-04-27 22:35:41 +00:00
allow up to a hundred iterations
This commit is contained in:
parent
0b99170d62
commit
c8f1096474
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@ struct Encoder
|
|||
}
|
||||
void tone_reservation()
|
||||
{
|
||||
for (int n = 0; n < 10; ++n) {
|
||||
for (int n = 0; n < 100; ++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