Nothing
#' Series of the gradient of the simple polynomial adjustment series w.r.t. the
#' scaled distance.
#'
#' For internal use only -- not to be called by 'mrds' or 'Distance' users
#' directly.
#'
#' @param distance perpendicular distance vector/scalar
#' @param scaling scale parameter
#' @param adj.order the adjustment order
#' @param adj.parm vector of parameters (a_j)
#' @param adj.exp boolean, defaults to FALSE
#'
#' @return scalar or vector containing the gradient of the polynomial adjustment
#' series for every value in \code{distance} argument
#'
#' @author Felix Petersma
adj.series.grad.poly <- function(distance, scaling = 1, adj.order,
adj.parm = NULL, adj.exp = FALSE){
# Check the adjustment parameters
if(is.null(adj.parm)){
adj.parm <- as.vector(rep(1, length(adj.order)))
}
adj.order <- as.vector(adj.order)
polysum <- 0
for(i in seq_along(adj.order)){
if (adj.order[i] - 1 == 0) {
polysum <- polysum +
(adj.parm[i] * adj.order[i] * 1)
} else {
polysum <- polysum +
(adj.parm[i] * adj.order[i] * (distance/scaling) ^ (adj.order[i] - 1))
}
}
# if adj.exp return exp(polysum) to keep f(x)>0
if(adj.exp){
return(exp(polysum))
}else{
return(polysum)
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.