Learn R Programming

SLGP (version 1.0.2)

check_basisfun_opts: Check basis function parameters

Description

Checks and completes the parameter list for a given basis function type.

Usage

check_basisfun_opts(basisFunctionsUsed, dimension, opts_BasisFun = list())

Value

A completed list of options specific to the chosen basis function.

Arguments

basisFunctionsUsed

Character. Type of basis function to use. One of: "inducing points", "RFF", "Discrete FF", "filling FF", "custom cosines".

dimension

Integer. The dimension of the input space (typically \([\mathbf{x}, t]\)).

opts_BasisFun

List. Options specific to the chosen basis function. Users can refer to the documentation of specific basis function initialization functions (e.g., initialize_basisfun_inducingpt, initialize_basisfun_RFF, initialize_basisfun_fillingRFF, initialize_basisfun_discreteFF, etc.) for details on the available options.