Skip to content

Commit

Permalink
Add docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
dhoegh committed Mar 8, 2015
1 parent 3bee50c commit 9739ab6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/stdlib/linalg.rst
Original file line number Diff line number Diff line change
Expand Up @@ -580,9 +580,9 @@ Linear algebra functions in Julia are largely implemented by calling functions f

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
.. function:: issym(A, [tol=1e-10]) -> Bool

Test whether a matrix is symmetric.
Test whether a matrix is symmetric. Tol is only used for arrays of FlotingPoint or ``Complex{T<:FlotingPoint}`` numbers, where it tests ``norm(A - A.', Inf) < tol*norm(A,Inf)``.

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

Expand All @@ -600,9 +600,9 @@ Linear algebra functions in Julia are largely implemented by calling functions f

Test whether a matrix is upper triangular.

.. function:: ishermitian(A) -> Bool
.. function:: ishermitian(A, [tol=1e-10]) -> Bool

Test whether a matrix is Hermitian.
Test whether a matrix is Hermitian. Tol is only used for arrays of FlotingPoint or ``Complex{T<:FlotingPoint}`` numbers, where it tests ``norm(A - A', Inf) < tol*norm(A,Inf)``.

.. function:: transpose(A)

Expand Down

0 comments on commit 9739ab6

Please sign in to comment.