Artifact 29b4c25b97bca63b013a1f9e0f90f6a48fc3bd15aa6603e1f8db36d502659531:
- Executable file
r37/lisp/csl/html/r37_0595.html
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 1293) [annotate] [blame] [check-ins using] [more...]
<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>