diff scripts/sparse/pcr.m @ 7031:120f3135952f

[project @ 2007-10-15 15:30:03 by jwe]
author jwe
date Mon, 15 Oct 2007 15:31:21 +0000
parents a1dbe9d80eee
children cadc73247d65
line wrap: on
line diff
--- a/scripts/sparse/pcr.m
+++ b/scripts/sparse/pcr.m
@@ -137,7 +137,8 @@
 ##     y(1:K) = x(1:K)./[1:K]';	
 ##   endfunction
 ## 
-##   [x, flag, relres, iter, resvec] = pcr(A,b,[],[],'applyM')
+##   [x, flag, relres, iter, resvec] = ...
+##                      pcr(A, b, [], [], 'applyM')
 ##   semilogy([1:iter+1], resvec);
 ## @end group
 ## @end example
@@ -152,7 +153,8 @@
 ##     y = x; y(1:K) = x(1:K)./[1:K]';	 
 ##   endfunction
 ## 
-##   [x, flag, relres, iter, resvec] = pcr(A,b,[],[],'applyM',[],3)
+##   [x, flag, relres, iter, resvec] = ...
+##                      pcr(A, b, [], [], 'applyM', [], 3)
 ## @end group
 ## @end example
 ##