TO BE PRECISED. interpolate is adapted frome package e1071 Warnings : when cycling is used, x should be well formatted to fit bound.

interpolate(
  x,
  a,
  adims = lapply(dimnames(a), as.numeric),
  method = "linear",
  cycling = FALSE,
  bound = 0
)

Arguments

x

array, values to be interpolated.

a

numeric, coordinates of points where interpolation should occur.

adims

TO BE PRECISED. Default to lapply(dimnames(a), as.numeric).

method

character, TO BE PRECISED. Default to "linear".

cycling

logical, TO BE PRECISED. Default to FALSE.

bound

TO BE PRECISED. Default to 0.

Value

TO BE PRECISED