Initialize Direction of Arrival (DOA) Solutions for MUSIC Algorithm
Source:R/SeaSondeRCS_MUSIC.R
seasonder_MUSICInitDOASolutions.RdThis function initializes the data structure for storing Direction of Arrival (DOA) solutions calculated by the MUSIC algorithm.
Details
The function returns a list containing two sub-lists, one for "single" solutions and another for "dual" solutions:
"single": Contains placeholders for single DOA solutions:bearing: The bearing angle (NA_real_by default).a: The complex steering vector (NA_complex_by default).P: The power spectrum value (NA_complex_by default).
"dual": Contains placeholders for dual DOA solutions:bearing: The bearing angle (NA_real_by default).a: The complex steering vector (NA_complex_by default).P: A 2 x 2 complex matrix initialized toNA_complex_.
See also
seasonder_MUSICInitCov for initializing covariance matrices.
seasonder_MUSICInitProjections for initializing projection matrices.