linalg(deprecated)/jacobian - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : linalg(deprecated)/jacobian

linalg(deprecated)

  

jacobian

  

compute the Jacobian matrix of a vector function

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

jacobian(f, v)

Parameters

f

-

vector or list of expressions

v

-

vector or list of variables

Description

• 

Important: The linalg package has been deprecated. Use the superseding command, VectorCalculus[Jacobian], instead.

  

- For information on migrating linalg code to the new packages, see examples/LinearAlgebraMigration.

• 

The procedure jacobian(f, v) computes the Jacobian matrix of f with respect to v. The (i,j)th entry of the matrix result is ∂∂vjfi.

• 

The command with(linalg,jacobian) allows the use of the abbreviated form of this command.

Examples

Important: The linalg package has been deprecated. Use the superseding command, VectorCalculus[Jacobian], instead.

> 

with⁡linalg:

> 

A≔vector⁡x2,x⁢y,x⁢z

A≔x2x⁢yx⁢z

(1)
> 

jacobian⁡A,x,y,z

2⁢x00yx0z0x

(2)

See Also

diff

linalg(deprecated)[grad]

linalg(deprecated)[hessian]

LinearAlgebra

VectorCalculus[Jacobian]