Default Options for the MUSIC Algorithm
Source:R/SeaSondeRCS_MUSIC.R
seasonder_defaultMUSICOptions.RdThis function returns a list of default options used in the MUSIC algorithm.
Details
The returned list includes:
PPMIN: Lower threshold value (default isNULL).PWMAX: Upper threshold value (default isNULL).smoothNoiseLevel: Logical flag indicating whether the noise level should be smoothed (FALSEby default).doppler_interpolation: Doppler interpolation factor (default is2).MUSIC_parameters: A numeric vector of default parameters for the MUSIC algorithm, retrieved fromseasonder_defaultMUSIC_parameters().discard_low_SNR: Logical flag to discard solutions with low signal-to-noise ratio (TRUEby default).discard_no_solution: Logical flag to discard cases with no solution (TRUEby default).
Examples
# Retrieve the default options for the MUSIC algorithm
opts <- seasonder_defaultMUSICOptions()
print(opts)
#> $PPMIN
#> NULL
#>
#> $PWMAX
#> NULL
#>
#> $smoothNoiseLevel
#> [1] FALSE
#>
#> $doppler_interpolation
#> [1] 2
#>
#> $MUSIC_parameters
#> [1] 40 20 2 20
#>
#> $discard_low_SNR
#> [1] TRUE
#>
#> $discard_no_solution
#> [1] TRUE
#>