<< HCat SYMSCI Toolbox Jacobian >>

SYMSCI Toolbox >> SYMSCI Toolbox > Inv

Inv

symbolic matrix inverse

Calling Sequence

B: Inv( A )

Arguments

A

matrix of symbolic scalars

B

matrix of symbolic scalars

Description

Returns the inverse of a matrix A.

Examples

// create a matrix
x = %(Sym("x"))
v = %(Vec(x,3))
A = %(Diag(v)+int32(1))

// inverse of A
Inv(A)

// clean up
reset();
clear x v A;

See Also

Authors

Bibliography

SymEngine: C++ library for fast symbolic manipulation.


Report an issue
<< HCat SYMSCI Toolbox Jacobian >>