Nothing
chebyshev.u.quadrature.rules <- function ( n, normalized=FALSE )
{
###
### This function returns a list with n elements
### containing the order k quadrature rule data frames
### for orders k=1,2,...,n
### An order k quadrature data frame contains the roots and
### abscissa values for the Chebyshev polynomial of
### the second kind, Uk(x), and degree k
###
### Parameter
### n = integer highest order
### normalized = boolean value. If TRUE, recurrences are for normalized polynomials
###
if ( n <= 0 )
stop( "highest order is not positive" )
if ( n != round( n ) )
stop( "highest order is not an integer" )
recurrences <- chebyshev.u.recurrences( n, normalized )
inner.products <- chebyshev.u.inner.products( n )
return( quadrature.rules( recurrences, inner.products ) )
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.