<A NAME=jacobian>
<TITLE>jacobian</TITLE></A>
<b><a href=r37_idx.html>INDEX</a></b><p><p>
<B>JACOBIAN</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P>
<P>
<P>
<P>
<P> <H3>
syntax: </H3>
<em>jacobian</em>(<expr\_list>,<variable\_list>)
<P>
<P>
<P>
<expr\_list> :- either a single algebraic expression or a list
of algebraic expressions.
<P>
<P>
<variable\_list> :- either a single variable or a list of
variables.
<P>
<P>
<em>jacobian</em>computes the jacobian matrix of <expr\_list>
w.r.t. <variable\_list>.
<P>
<P>
This is a matrix whose (i,j)'th entry is
<A HREF=r37_0148.html>df</A>(<expr\_list>
(i),<variable\_list>(j)).
<P>
<P>
The matrix is n by m where n is the number of variables and m the number
of expressions.
<P>
<P>
<P> <H3>
examples: </H3>
<P><PRE><TT>
jacobian({x^4,x*y^2,x*y*z^3},{w,x,y,z});
[ 3 ]
[0 4*x 0 0 ]
[ ]
[ 2 ]
[0 y 2*x*y 0 ]
[ ]
[ 3 3 2]
[0 y*z x*z 3*x*y*z ]
</TT></PRE><P>Related functions:
<A HREF=r37_0593.html>hessian</A>,
<A HREF=r37_0148.html>df</A>.
<P>
<P>