laplacian
Laplacian of symbolic field
Description
Examples
Input Arguments
Limitations
Symbolic Math Toolbox™ currently does not support the
dot
orcross
functions for symbolic matrix variables and functions of typesymmatrix
andsymfunmatrix
. If vector calculus identities involve dot or cross products, then the toolbox displays those identities in terms of other supported functions instead. To see a list of all the functions that support symbolic matrix variables and functions, use the commandsmethods symmatrix
andmethods symfunmatrix
.If the input data type of the symbolic field
f
issymmatrix
orsymfunmatrix
, thenlaplacian
does not evaluate the partial derivatives off
. Instead, it returns an unevaluated formula for symbolic manipulation and formula rearrangement.
More About
Alternatives
The Laplacian of a scalar function or functional expression is the divergence of the gradient of that function or expression.
For a symbolic scalar field f
, you can also compute the Laplacian using
the divergence
and gradient
functions.
syms f(x,y)
divergence(gradient(f(x,y)),[x y])
Version History
Introduced in R2012aSee Also
curl
| diff
| divergence
| gradient
| hessian
| jacobian
| potential
| vectorPotential