# Created by Octave 3.2.3, Sun Jun 20 01:08:32 2010 UTC <mockbuild@ppc04.phx2.fedoraproject.org>
# name: cache
# type: cell
# rows: 3
# columns: 1
# name: <cell-element>
# type: string
# elements: 1
# length: 7
lauchli
# name: <cell-element>
# type: string
# elements: 1
# length: 417
 -- Function File: A = lauchli (N)
 -- Function File: A = lauchli (N,MU)
     Creates the matrix [ ones(1,N); MU*eye(N) ] The value MU defaults
     to sqrt(eps).  This is an ill-conditioned system for testing the
     accuracy of the QR routine.

                A = lauchli(15);
                [Q, R] = qr(A);
                norm(Q*R - A)
                norm(Q'*Q - eye(rows(Q)))

   See also: ones, zeros, eye


# name: <cell-element>
# type: string
# elements: 1
# length: 79
Creates the matrix [ ones(1,N); MU*eye(N) ] The value MU defaults to
sqrt(eps).

