mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-05 10:34:04 +02:00
fd27bdc442
- collect: set up a test transmission at each available frequency, then then record the signal seen by the USRP2 - norm: extract parameters necessary for normalization - viz: visualize the spectrum with gnuplot - row: generate rows of spectra with "viz"
11 lines
133 B
Perl
Executable File
11 lines
133 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
for ($n = 0; <>; $n++) {
|
|
if ($_ > $ym || !defined $ym) {
|
|
$xm = $n;
|
|
chop($ym = $_);
|
|
}
|
|
}
|
|
|
|
print "$xm $ym $n\n";
|