Skip to contents

This function returns the default parameters for the MUSIC algorithm used in the SeaSondeR package.

Usage

seasonder_defaultMUSIC_parameters()

Value

A numeric vector containing the default parameters for the MUSIC algorithm: c(40, 20, 2, 20).

Details

The default parameters are:

  • 40: Threshold used in seasonder_MUSICCheckEigenValueRatio.

  • 20: Threshold used in seasonder_MUSICCheckSignalPowers.

  • 2: Threshold used in seasonder_MUSICCheckSignalMatrix.

  • 20: Threshold used in seasonder_MUSICCheckBearingDistance.

See also

seasonder_MUSICTestDualSolutions to understand the parameters in context.

Examples

# Retrieve default parameters
params <- seasonder_defaultMUSIC_parameters()
print(params)
#> [1] 40 20  2 20