rsl_select_sweeps
Select sweeps in a radar structure. The radar structure is modified to
contain only the sweeps selected.
Syntax
| rsl_select_sweeps, |
radar, sweep_index
|
Arguments
| radar |
A radar structure. It is modified by this procedure. |
| sweep_index |
Indexes of selected sweeps. This can be a scalar or array.
Index of first sweep is 0.
|
Example
Select sweeps at indexes 0, 2, and 6. The returned radar structure contains
only those three sweeps.
rsl_select_sweeps, radar, [0,2,6]
print,radar.volume[0].sweep.h.sweep_num
1 3 7