R/spherical.recurrences.R

Defines functions spherical.recurrences

Documented in spherical.recurrences

spherical.recurrences <- function( n, normalized=FALSE )
{
###
###	This function returns a data frame with n+1 rows and four columns
###	containing the coefficients c, d, e and f of the recurrence relations
###	for the order k spherical polynomial, Pk(x), and orders k=0,1,...,n
###
###	Parameter
###	n = integer highest polynomial order
###	normalized = a boolean value.  if true, the recurrences are for normalized polynomials
###
	return( legendre.recurrences( n, normalized ) )
}	

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.