Fill an array with beam data .
If the array is longer than the beam fill the remaining with missing
- Parametri
-
[in] | az | - azimuth index |
[in,out] | out | - array to be filled |
| out_size | - dimension of the array |
[in] | missing | - Value to be used to fill the exceeding part |
Definizione alla linea 194 del file volume.h.
199 size_t set_count = min(
beam_size, out_size);
201 for (
unsigned i = 0; i < set_count; ++i)
204 for (
unsigned i = set_count; i < out_size; ++i)
T get(unsigned az, unsigned beam) const
Get a beam value.
unsigned beam_size
Number of samples in each beam.
Referenzia radarelab::PolarScanBase::beam_size, e radarelab::PolarScan< T >::get().