1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-07-05 03:15:28 +03:00
ben-wpan/usrp/sps/norm
Werner Almesberger fd27bdc442 usrp/sps/: spectrum scan utilities (work in progress)
- 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"
2011-03-03 23:26:31 -03:00

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";