R/fixedvarianceKernExtractParam.R

#' @title fixedvarianceKernExtractParam
#'
#' @description
#' Function for extracting the parameters of the \code{fixedvariance} kernel.
#' As the parameters of the \code{fixedvariance} kernel are fixed, the kernel
#' has no parameters to be optimized. Hence, this function returns a
#' NULL vector. This function is written to comply with the \code{gptk} package.
#'
#' @param kern GP kernel structure which contains the
#' fixed variances.
#' @param only.values Default set to TRUE.
#' @param untransformed.values Default set to TRUE.
#'
#' @export
#' @return Return parameters of the kernel.
#'
#' @keywords fixedvariance
#' @keywords internal
#' @author Hande Topa, \email{hande.topa@@helsinki.fi}
#'

fixedvarianceKernExtractParam <-
function (kern, only.values=TRUE, untransformed.values=TRUE) {
	params <- c()	
	return (params)
}

Try the GPrank package in your browser

Any scripts or data that you put into this service are public.

GPrank documentation built on May 2, 2019, 3:35 p.m.