1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
@c Copyright (C) 1996, 1997 John W. Eaton
@c This is part of the Octave manual.
@c For copying conditions, see the file gpl.texi.
@node Linear Algebra
@chapter Linear Algebra
This chapter documents the linear algebra functions of Octave.
Reference material for many of these functions may be found in
Golub and Van Loan, @cite{Matrix Computations, 2nd Ed.}, Johns Hopkins,
1989, and in @cite{@sc{Lapack} Users' Guide}, SIAM, 1992.
@menu
* Basic Matrix Functions::
* Matrix Factorizations::
* Functions of a Matrix::
@end menu
@node Basic Matrix Functions
@section Basic Matrix Functions
@DOCSTRING(balance)
@DOCSTRING(cond)
@DOCSTRING(det)
@DOCSTRING(dmult)
@DOCSTRING(dot)
@DOCSTRING(eig)
@DOCSTRING(givens)
@DOCSTRING(inv)
@DOCSTRING(norm)
@DOCSTRING(null)
@DOCSTRING(orth)
@DOCSTRING(pinv)
@DOCSTRING(rank)
@DOCSTRING(trace)
@node Matrix Factorizations
@section Matrix Factorizations
@DOCSTRING(chol)
@DOCSTRING(hess)
@DOCSTRING(lu)
@DOCSTRING(qr)
@DOCSTRING(qz)
@DOCSTRING(qzhess)
@DOCSTRING(schur)
@DOCSTRING(svd)
@c XXX FIXME XXX -- should there be a new section here?
@DOCSTRING(housh)
@DOCSTRING(krylov)
@node Functions of a Matrix
@section Functions of a Matrix
@DOCSTRING(expm)
@DOCSTRING(logm)
@DOCSTRING(sqrtm)
@DOCSTRING(kron)
@DOCSTRING(syl)
|