https://github.com/cran/pracma
Raw File
Tip revision: 708a2ad382a163d1eef5af0665e3ae2aad200ced authored by HwB on 21 March 2013, 00:00:00 UTC
version 1.4.5
Tip revision: 708a2ad
laplacian.Rd
\name{laplacian}
\alias{laplacian}
\title{
  Laplacian Operator
}
\description{
  Numerically compute the Laplacian of a function.
}
\usage{
laplacian(f, x0, h = .Machine$double.eps^(1/4), ...)
}
\arguments{
  \item{f}{univariate function of two variables.}
  \item{x0}{point in \eqn{R^n}.}
  \item{h}{step size.}
  \item{...}{variables to be passed to \code{f}.}
}
\details{
  Computes the Laplacian operator \eqn{f_{xx} + f_{yy}}
  based on the three-point central difference formula, expanded to this
  special case.

  Assumes that the function has continuous partial derivatives.
}
\value{
  Real number.
}
\references{
  Fausett, L. V. (2007). Applied Numerical Analysis Using Matlab.
  Second edition, Prentice Hall.
}
\seealso{
  \code{\link{fderiv}}, \code{\link{hessian}}
}
\examples{
f <- function(x) x[1]^2 + 2*x[1]*x[2] + x[2]^2
laplacian(f, c(1,1))
}
\keyword{ math }
back to top