R/polynomial.functions.R

Defines functions polynomial.functions

Documented in polynomial.functions

polynomial.functions <- function( polynomials, ... )
{
###
### this function returns a list of functions one for each of the
### polynomials in the arguments
###
### Parameters
### polynomials = a list of polynomial objects
### ... = further arguments to be passed to or from methods
###
    functions <- list()
    n <- length( polynomials )
    for ( j in 1:n ) {
        functions[[j]] <- as.function( polynomials[[j]], ... )
    }
    return( functions )
}

Try the orthopolynom package in your browser

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

orthopolynom documentation built on Oct. 3, 2022, 5:08 p.m.