R/HermitePolyCoeff.r

Defines functions HermitePolyCoeff

	HermitePolyCoeff <- function(degree) { 
		if (degree == 0){
			value <- c(1.0, 0.0, 0.0)}
		else{
			value <- c(1.0, 0.0, -(degree-1.0))}
	return(value)
	} 

Try the GPC package in your browser

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

GPC documentation built on May 30, 2017, 12:50 a.m.