https://github.com/cran/gss
Raw File
Tip revision: 8f3dd0d2b35f00f5c127f9be44088eedd9f861ac authored by Chong Gu on 17 May 2020, 16:00:02 UTC
version 2.2-1
Tip revision: 8f3dd0d
smolyak.Rd
\name{smolyak}
\alias{smolyak.quad}
\alias{smolyak.size}
\title{Generating Smolyak Cubature}
\description{
    Generate delayed Smolyak cubatures using C routines modified from
    \code{smolyak.c} found in Knut Petras' SMOLPACK.
}
\usage{
smolyak.quad(d, k)

smolyak.size(d, k)
}
\arguments{
    \item{d}{Dimension of unit cube.}
    \item{k}{Depth of algorithm.}
}
\value{
    \code{smolyak.quad} returns a list object with the following
    elements.
    \item{pt}{Quadrature nodes in rows of matrix.}
    \item{wt}{Quadrature weights.}

    \code{smolyak.size} returns an integer.
}
\keyword{math}
back to top