1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2025-04-21 12:27:27 +03:00

fix glitch in fft.c and add scripts to display data sets without temp file

- usrp/doall: new script to directly evaluate and plot data sets
- usrp/fft.c (fft_complex): don't square the magnitude
- usrp/plscan: if an argument name has the form title=name, use "name" as
  the file name and "title" as the title
This commit is contained in:
Werner Almesberger
2010-11-29 01:10:23 -03:00
parent 404a0eea04
commit eafb2a226f
3 changed files with 20 additions and 2 deletions

11
usrp/doall Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash -x
opts=
while [ "$2" ]; do
opts="$opts $1"
shift
done
a=
for n in $1; do
a="$a `basename $n`=<(./evscan $n)"
done
eval ./plscan $opts $a