https://github.com/cran/gss
Raw File
Tip revision: de0af7b995a347369713641f6869d5a297505f35 authored by Chong Gu on 06 August 2007, 00:00:00 UTC
version 1.0-0
Tip revision: de0af7b
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
    components.
    \item{pt}{Quadrature nodes in rows of matrix.}
    \item{wt}{Quadrature weights.}

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