File: gauss.quad.Rd

package info (click to toggle)
r-cran-gss 2.1-3-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,740 kB
  • ctags: 1,400
  • sloc: fortran: 5,241; ansic: 1,388; makefile: 1
file content (20 lines) | stat: -rw-r--r-- 502 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
\name{gauss.quad}
\alias{gauss.quad}
\title{Generating Gauss-Legendre Quadrature}
\description{
    Generate Gauss-Legendre quadratures using the FORTRAN routine
    \code{gaussq.f} found on NETLIB.
}
\usage{
gauss.quad(size, interval)
}
\arguments{
    \item{size}{Size of quadrature.}
    \item{interval}{Interval to be covered.}
}
\value{
    \code{gauss.quad} returns a list object with the following components.
    \item{pt}{Quadrature nodes.}
    \item{wt}{Quadrature weights.}
}
\keyword{math}