R/ultraspherical.quadrature.R

Defines functions ultraspherical.quadrature

Documented in ultraspherical.quadrature

ultraspherical.quadrature <- function( functn, rule, alpha=0, lower=-1, upper=1, 
weighted=TRUE, ... )
{
###
### This function evaluates the integral of the function functn
### between lower and upper using the weight and abscissa values specified
### in the rule data frame.  The rule corresponds to an order n
### ultraspherical polynomial, weight function and interval [-1,1]
### Lower bound is finite and upper bound is finite.
###
### Parameters
### functn   = an R function which should take a numeric argument x and
###            possibly some parameters.  The function returns a
###            numerical vector value for the given argument x.
### rule     = a data frame containing the order n quadrature rule
### alpha    = polynomial parameter
### ...      = other arguments passed to the function functn.
### lower    = a scalar lower bound of the integral
### upper    = a scalar lower found of the integral.
### weighted = a boolean value which if true includes the weight function in the integrand
###
    if ( !is.function( functn ) )
        stop( "functn argument is not an R function" )
    if ( !is.data.frame( rule ) )
        stop( "rule argument is not a data frame" )
    if ( is.infinite( lower ) )
        stop( "lower bound is infinite" )
    if ( is.infinite( upper ) )
        stop( "lower bound is infinite" )
    if ( weighted ) {
        ff <- 
    	if ( length( list( ... ) ) && length( formals( functn ) ) > 1 )
	    function( x, alpha ) { functn( x, ... ) }
	else
            function( x, alpha ) { functn( x ) }
    }
    else {
	ff <- 
	if ( length( list( ... ) ) && length( formals( functn ) ) > 1 )
	    function( x, alpha ) { functn( x, ... ) / ultraspherical.weight( x, alpha ) }
	else
	    function( x, alpha ) { functn( x ) / ultraspherical.weight( x, alpha ) }
    }
    lambda <- ( upper - lower ) / ( 2 )
    mu <-     ( lower + upper ) / ( 2 )
    y <- lambda * rule$x + mu
    w <- rule$w
    return( lambda * sum( w * ff(y, alpha) ) )
}

Try the gaussquad package in your browser

Any scripts or data that you put into this service are public.

gaussquad documentation built on June 14, 2022, 9:05 a.m.