linalg 1.8.2
A linear algebra library that provides a user-friendly interface to several BLAS and LAPACK routines.
|
Computes the rank 1 downdate to a Cholesky factored matrix (upper triangular). More...
Public Member Functions | |
cholesky_rank1_downdate_dbl | |
cholesky_rank1_downdate_cmplx | |
Computes the rank 1 downdate to a Cholesky factored matrix (upper triangular).
[in,out] | r | On input, the N-by-N upper triangular matrix R. On output, the updated matrix R1. |
[in,out] | u | On input, the N-element update vector U. On output, the rotation sines used to transform R to R1. |
[out] | work | An optional argument that if supplied prevents local memory allocation. If provided, the array must have at least N elements. Additionally, this workspace array is used to contain the rotation cosines used to transform R to R1. |
[in,out] | err | An optional errors-based object that if provided can be used to retrieve information relating to any errors encountered during execution. If not provided, a default implementation of the errors class is used internally to provide error handling. Possible errors and warning messages that may be encountered are as follows.
|
Definition at line 1893 of file linalg.f90.