Initialize Eigenvalue Decomposition Structure for MUSIC Algorithm
Source:R/SeaSondeRCS_MUSIC.R
seasonder_MUSICInitEigenDecomp.Rd
This function initializes the data structure for storing the eigenvalue decomposition results used in the MUSIC algorithm.
Value
A list with two elements:
values
: Eigenvalues as a complex vector.vectors
: Eigenvectors as a complex matrix.
Details
The function returns a list with the following components:
values
: A vector of length 3, initialized withNA_complex_
, to hold the eigenvalues.vectors
: A 3 x 3 matrix, initialized withNA_complex_
, to hold the eigenvectors.
This structure is designed to support three-channel antenna configurations typical in SeaSondeR applications.
See also
seasonder_MUSICInitCov
for initializing covariance matrices.