mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-05 07:27:31 +02:00
eafb2a226f
- 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
12 lines
162 B
Bash
Executable File
12 lines
162 B
Bash
Executable File
#!/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
|