seasonder_defaultMUSICOptions {SeaSondeR} | R Documentation |
Default Options for the MUSIC Algorithm
Description
This function returns a list of default options used in the MUSIC algorithm.
Usage
seasonder_defaultMUSICOptions()
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 (FALSE
by 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 (TRUE
by default). -
discard_no_solution
: Logical flag to discard cases with no solution (TRUE
by default).
Value
A list containing the default options for the MUSIC algorithm.
Examples
# Retrieve the default options for the MUSIC algorithm
opts <- seasonder_defaultMUSICOptions()
print(opts)