comparison scripts/linear-algebra/condest.m @ 10821:693e22af08ae

Grammarcheck documentation of m-files Add newlines between @item fields for readability.
author Rik <octave@nomad.inbox5.com>
date Mon, 26 Jul 2010 21:25:36 -0700
parents be55736a0783
children 994e2a93a8e2
comparison
equal deleted inserted replaced
10820:c44c786f87ba 10821:693e22af08ae
32 ## following functions: 32 ## following functions:
33 ## 33 ##
34 ## @table @var 34 ## @table @var
35 ## @item apply 35 ## @item apply
36 ## @code{A*x} for a matrix @code{x} of size @var{n} by @var{t}. 36 ## @code{A*x} for a matrix @code{x} of size @var{n} by @var{t}.
37 ##
37 ## @item apply_t 38 ## @item apply_t
38 ## @code{A'*x} for a matrix @code{x} of size @var{n} by @var{t}. 39 ## @code{A'*x} for a matrix @code{x} of size @var{n} by @var{t}.
40 ##
39 ## @item solve 41 ## @item solve
40 ## @code{A \ b} for a matrix @code{b} of size @var{n} by @var{t}. 42 ## @code{A \ b} for a matrix @code{b} of size @var{n} by @var{t}.
43 ##
41 ## @item solve_t 44 ## @item solve_t
42 ## @code{A' \ b} for a matrix @code{b} of size @var{n} by @var{t}. 45 ## @code{A' \ b} for a matrix @code{b} of size @var{n} by @var{t}.
43 ## @end table 46 ## @end table
44 ## 47 ##
45 ## The implicit version requires an explicit dimension @var{n}. 48 ## The implicit version requires an explicit dimension @var{n}.
57 ## @item 60 ## @item
58 ## N.J. Higham and F. Tisseur, @cite{A Block Algorithm 61 ## N.J. Higham and F. Tisseur, @cite{A Block Algorithm
59 ## for Matrix 1-Norm Estimation, with an Application to 1-Norm 62 ## for Matrix 1-Norm Estimation, with an Application to 1-Norm
60 ## Pseudospectra}. SIMAX vol 21, no 4, pp 1185-1201. 63 ## Pseudospectra}. SIMAX vol 21, no 4, pp 1185-1201.
61 ## @url{http://dx.doi.org/10.1137/S0895479899356080} 64 ## @url{http://dx.doi.org/10.1137/S0895479899356080}
65 ##
62 ## @item 66 ## @item
63 ## N.J. Higham and F. Tisseur, @cite{A Block Algorithm 67 ## N.J. Higham and F. Tisseur, @cite{A Block Algorithm
64 ## for Matrix 1-Norm Estimation, with an Application to 1-Norm 68 ## for Matrix 1-Norm Estimation, with an Application to 1-Norm
65 ## Pseudospectra}. @url{http://citeseer.ist.psu.edu/223007.html} 69 ## Pseudospectra}. @url{http://citeseer.ist.psu.edu/223007.html}
66 ## @end itemize 70 ## @end itemize