Exported Functions

RadialBasisFunctions.directionalMethod
function directional(data, eval_points, v, basis; k=autoselect_k(data, basis))

Builds a RadialBasisOperator where the operator is the directional derivative, Directional.

source
RadialBasisFunctions.directionalMethod
function directional(data, v, basis; k=autoselect_k(data, basis))

Builds a RadialBasisOperator where the operator is the directional derivative, Directional.

source
RadialBasisFunctions.gradientMethod
function gradient(data, basis; k=autoselect_k(data, basis))

Builds a RadialBasisOperator where the operator is the gradient, Gradient.

source
RadialBasisFunctions.gradientMethod
function gradient(data, eval_points, basis; k=autoselect_k(data, basis))

Builds a RadialBasisOperator where the operator is the gradient, Gradient. The resulting operator will only evaluate at eval_points.

source
RadialBasisFunctions.partialMethod
function partial(data, eval_points, order, dim, basis; k=autoselect_k(data, basis))

Builds a RadialBasisOperator where the operator is the partial derivative, Partial. The resulting operator will only evaluate at eval_points.

source
RadialBasisFunctions.partialMethod
function partial(data, order, dim, basis; k=autoselect_k(data, basis))

Builds a RadialBasisOperator where the operator is the partial derivative, Partial, of order with respect to dim.

source
RadialBasisFunctions.regridMethod
function regrid(data, eval_points, basis=PHS(3; poly_deg=2); k=autoselect_k(data, basis))

Builds a RadialBasisOperator where the operator is an regrid from one set of points to another, data -> eval_points.

source
RadialBasisFunctions.∂virtualMethod
function ∂virtual(data, eval_points, dim, Δ, basis; k=autoselect_k(data, basis))

Builds a virtual RadialBasisOperator whichi will be evaluated at eval_points where the operator is the partial derivative with respect to dim. Virtual operators interpolate the data to structured points at a distance Δ for which standard finite difference formulas can be applied.

source
RadialBasisFunctions.∂virtualMethod
function ∂virtual(data, dim, Δ, basis; k=autoselect_k(data, basis))

Builds a virtual RadialBasisOperator whichi will be evaluated at the input points (data) where the operator is the partial derivative with respect to dim. Virtual operators interpolate the data to structured points at a distance Δ for which standard finite difference formulas can be applied.

source
RadialBasisFunctions.DirectionalType
Directional{Dim,T} <: ScalarValuedOperator

Operator for the directional derivative, or the inner product of the gradient and a direction vector.

source

Private