|
From: Nicolas N. <Nic...@iw...> - 2002-10-30 09:47:09
|
"Michael A. Koerber" <ma...@ll...> writes:
> Rif,
>
> I should read and write more slowly. WRT your first posting,
> the solution for multiple RHS would be to use (GETRS ...) or (GETRS! ...)
>
> mike
Yes, something like
(multiple-value-bind (lu ipiv info)
(getrf! (copy mat))
(declare (ignore info))
(getrs! lu ipiv rhs))
should work in recent CVS versions.
Nicolas.
|