R/spherical.polynomials.R

Defines functions spherical.polynomials

Documented in spherical.polynomials

spherical.polynomials <- function( n, normalized=FALSE )
{
###
###	This function returns a list with n+1 elements
###	containing the order k Spherical polynomials, Pk(x),
###	for orders k=0,1,...,n
###
###	Parameters
###	n = integer highest polynomial order
###	normalized = boolean value.  if true, the polynomials are normalized
###
	return ( legendre.polynomials( 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.