Basis Functions
Types
UncertaintyQuantification.MonomialBasis Type
julia
MonomialBasis(d::Integer, p::Integer; include_zero::Bool=true)Construct a monomial basis in d dimensions of degree less than or equal to p. The keyword include_zero controls wether the zero degree monomial is included.
UncertaintyQuantification.GaussianRadialBasis Type
julia
GaussianRadialBasis(c::AbstractMatrix{<:Real}, ϵ::Union{Real,Vector{<:Real}})Construct a guassian radial basis using the center points given in the columns of c and shape parameter ϵ. Different shape parameters can be assigned to each basis function by passing a vector as ϵ.
UncertaintyQuantification.PolyharmonicRadialBasis Type
julia
PolyharmonicRadialBasis(c::AbstractMatrix{<:Real}, k::Int)Construct a polyharmonic radial basis of degree k using the center points given in the columns of c.