This is the mail archive of the gsl-discuss@sources.redhat.com mailing list for the GSL project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

forwarded message from Brian Gough


--- Begin Message ---
Andrew Jason Penner writes:
 > 	Okay, attached is a program that will compute the LU decomposition
 > of a Hermitian matrix
 > 
 > [1 2 3]
 > [2 3 4]
 > [3 4 5]
 > 
 > 	It should fail, however it does produce values in the end. The
 > output is sent to the screen.

The LU decomposition is valid (i.e. if you multiply p'*l*u it gives
the original matrix).

The solver uses the decomposition and gets an answer, it's inaccurate
but there is no division by zero, due to finite precision.

What's needed is an estimate of the error or condition number, which
we currently don't have a function for.  The underlying blas
triangular solvers don't do it.

--- End Message ---

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]