<< Inv SYMSCI Toolbox LUSolve >>

SYMSCI Toolbox >> SYMSCI Toolbox > Jacobian

Jacobian

symbolic jacobian matrix

Calling Sequence

J: Jacobian( f, x )

Arguments

f

(n,1)-matrix of symbolic scalar expressions

x

(m,1)-matrix of symbolic scalar expressions

J

(n,m)-matrix of symbolic scalar expressions

Description

Calulates the Jacobian matrix of f with respect to x.

Examples

// define f an x
f = %(Mat(["x/z";"y*x*x";"z+x"]))
x = %(Mat(["x";"y";"z"]))

// Jacobian df/dx
Jacobian(f, x)

// clean up
reset();
clear f x;

See Also

Authors

Bibliography

SymEngine: C++ library for fast symbolic manipulation.


Report an issue
<< Inv SYMSCI Toolbox LUSolve >>