cmf_calc_combined_kernels_1alpha: Kernel combination with linear interpolation for fields with...

Description Usage Arguments Examples

Description

Kernel combination with linear interpolation for fields with the same value of alpha

Usage

1
cmf_calc_combined_kernels_1alpha(kernels, h, alpha, alphas) 

Arguments

kernels
h
alpha
alphas

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
cmf_calc_combined_kernels_1alpha <- function(kernels, h, alpha, alphas) 
{
  mfields <- names(h)
  nfields <- length(mfields)
  alpha_f <- list()
  for (f in 1:nfields) {
    alpha_f[[ mfields[f] ]] <- alpha
  }
  cmf_calc_combined_kernels(kernels, h, alpha_f, alphas)
}

conmolfields documentation built on May 2, 2019, 4:18 p.m.