Mercurial > hg > octave-lyh
comparison scripts/sparse/bicg.m @ 14359:7277fe922e99
doc: Use Octave preference for double quote in docstrings in scripts/
* interp1.m, interp2.m, interp3.m, interpn.m, profexplore.m, profile.m,
profshow.m, quadgk.m, lookfor.m, imagesc.m, bzip2.m, gzip.m, parseparams.m,
pkg.m, ancestor.m, caxis.m, ezmesh.m, ezmeshc.m, ezsurf.m, ezsurfc.m, hidden.m,
hold.m, patch.m, pie.m, pie3.m, quiver.m, quiver3.m, scatter3.m,
uicontextmenu.m, uicontrol.m, uipanel.m, uipushtool.m, uitoggletool.m,
uitoolbar.m, xlim.m, ylim.m, zlim.m, ismember.m, setxor.m, filter2.m, bicg.m,
demo.m, example.m, fail.m, test.m: Use Octave preference for double quote in
docstrings in scripts/ directory.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Mon, 13 Feb 2012 07:38:23 -0800 |
parents | 72c96de7a403 |
children | f3d52523cde1 |
comparison
equal
deleted
inserted
replaced
14358:adb352685ded | 14359:7277fe922e99 |
---|---|
38 ## and @code{f(x, "transp") = A'*x}. | 38 ## and @code{f(x, "transp") = A'*x}. |
39 ## | 39 ## |
40 ## The preconditioner @var{P} is given as @code{P = M1 * M2}. | 40 ## The preconditioner @var{P} is given as @code{P = M1 * M2}. |
41 ## Both @var{M1} and @var{M2} can be passed as a matrix or as | 41 ## Both @var{M1} and @var{M2} can be passed as a matrix or as |
42 ## a function handle or inline function @code{g} such that | 42 ## a function handle or inline function @code{g} such that |
43 ## @code{g(x, 'notransp') = M1 \ x} or @code{g(x, 'notransp') = M2 \ x} and | 43 ## @code{g(x, "notransp") = M1 \ x} or @code{g(x, "notransp") = M2 \ x} and |
44 ## @code{g(x, 'transp') = M1' \ x} or @code{g(x, 'transp') = M2' \ x}. | 44 ## @code{g(x, "transp") = M1' \ x} or @code{g(x, "transp") = M2' \ x}. |
45 ## | 45 ## |
46 ## If called with more than one output parameter | 46 ## If called with more than one output parameter |
47 ## | 47 ## |
48 ## @itemize @minus | 48 ## @itemize @minus |
49 ## @item @var{flag} indicates the exit status: | 49 ## @item @var{flag} indicates the exit status: |