# HG changeset patch # User Jordi GutiƩrrez Hermoso # Date 1330552040 18000 # Node ID 62cb605af1af1904b1c709d2aa3007cac5ea50a5 # Parent 428faafdfa54d3525fd40b032411f7da3b456f13 doc: Further fixes diagperm (bug #35666) diff -r 428faafdfa54 -r 62cb605af1af doc/interpreter/diagperm.txi --- a/doc/interpreter/diagperm.txi Wed Feb 29 16:21:05 2012 -0500 +++ b/doc/interpreter/diagperm.txi Wed Feb 29 16:47:20 2012 -0500 @@ -431,11 +431,13 @@ @example @group s = norm (X, "columns"); - X = diag (s) / X; + X /= diag (s); @end group @end example -The same can also be accomplished with broadcasting: +@noindent +The same can also be accomplished with broadcasting +(@pxref{Broadcasting}): @example @group @@ -454,7 +456,7 @@ @end example @noindent -Finally, here's how you solve a linear system @code{A*x = b} +Finally, here's how you solve a linear system @code{A*x = b} with Tikhonov regularization (ridge regression) using SVD (a skeleton only): @example