single_plotter.pyload a single*.iqfile and plot the waterfallmulti_plotter.pyload a list of*.iqs files and plot the waterfallmulti_overlap_plotter.pyload a list of*.iqs files, eventually with some overlap, and plot the waterfall
pyinstaller main.py \
--workpath=./build \
--specpath=./ \
--distpath=./dist \
--noconfirm \
--log-level=TRACE \
--onedir \
--name=`basename "$PWD"` \
--add-data=despyner/icons/:despyner/icons/ \
--add-data=wide3.ico:. \
--optimize=2| command | arg1 | arg2 | arg3 |
|---|---|---|---|
load |
filename: str | [object_name: str] | |
lo |
value: float | [object_name: str] | |
tslice |
value: float | [object_name: str] | |
fslice |
value: float | [object_name: str] | |
frange |
start_value: float | stop_value: float | [object_name: str] |
trange |
start_value: float | stop_value: float | [object_name: str] |
compute |
|||
├──tot |
|||
├──max |
|||
├──min |
|||
├──fslice |
|||
│ ├──tot |
|||
│ ├──max |
|||
│ └──min |
|||
└──tslice |
|||
├──tot |
|||
├──max |
|||
└──min |
|||
show |
|||
├──waterfall |
|||
├──tslice |
|||
│ └──fft |
|||
├──fslice |
|||
├──ftot |
|||
└──ttot |
object_name is . by default. Hence, when not specified, command operate on the same object.