Skip to content

Commit

Permalink
Doc for lyap() and sylvester().
Browse files Browse the repository at this point in the history
  • Loading branch information
mschauer committed Jun 28, 2014
1 parent ea8f889 commit cceeeda
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions doc/stdlib/linalg.rst
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,14 @@ Linear algebra functions in Julia are largely implemented by calling functions f

Matrix exponential.

.. function:: lyap(A, C)

Computes the solution ``X`` to the continuous Lyapunov equation ``AX + XA' + C = 0``, where no eigenvalue of ``A`` has a zero real part and no two eigenvalues are negative complex conjugates of each other.

.. function:: sylvester(A, B, C)

Computes the solution ``X`` to the Sylvester equation ``AX + XB + C = 0``, where ``A``, ``B`` and ``C`` have compatible dimensions and ``A`` and ``-B`` have no eigenvalues with equal real part.

.. function:: issym(A) -> Bool

Test whether a matrix is symmetric.
Expand Down

0 comments on commit cceeeda

Please sign in to comment.