seasonder_MUSICInitEigenDecomp {SeaSondeR} | R Documentation |
Initialize Eigenvalue Decomposition Structure for MUSIC Algorithm
Description
This function initializes the data structure for storing the eigenvalue decomposition results used in the MUSIC algorithm.
Usage
seasonder_MUSICInitEigenDecomp()
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.
Value
A list with two elements:
-
values
: Eigenvalues as a complex vector. -
vectors
: Eigenvectors as a complex matrix.
See Also
seasonder_MUSICInitCov
for initializing covariance matrices.
[Package SeaSondeR version 0.2.8 Index]