|
12 | 12 | """ |
13 | 13 | LAPACK_HoudeholderQR(; blocksize, positive = false, pivoted = false) |
14 | 14 |
|
15 | | -Algorithm type to denote the standard LAPACK algorithm for computing the |
16 | | -QR decomposition of a matrix using Householder reflectors. The specific |
17 | | -LAPACK function can be controlled using the keyword arugments, i.e. |
18 | | -`?geqrt` will be chosen if `blocksize > 1`. With `blocksize == 1`, |
19 | | -`?geqrf` will be chosen if `pivoted == false` and |
20 | | -`?geqp3` will be chosen if `pivoted == true`. |
| 15 | +Algorithm type to denote the standard LAPACK algorithm for computing the QR decomposition of |
| 16 | +a matrix using Householder reflectors. The specific LAPACK function can be controlled using |
| 17 | +the keyword arugments, i.e. `?geqrt` will be chosen if `blocksize > 1`. With |
| 18 | +`blocksize == 1`, `?geqrf` will be chosen if `pivoted == false` and `?geqp3` will be chosen |
| 19 | +if `pivoted == true`. |
21 | 20 | """ |
22 | 21 | @algdef LAPACK_HouseholderQR |
23 | 22 |
|
24 | 23 | """ |
25 | 24 | LAPACK_HoudeholderLQ(; blocksize, positive = false) |
26 | 25 |
|
27 | | -Algorithm type to denote the standard LAPACK algorithm for computing the |
28 | | -LQ decomposition of a matrix using Householder reflectors. The specific |
29 | | -LAPACK function can be controlled using the keyword arugments, i.e. |
30 | | -`?gelqt` will be chosen if `blocksize > 1` or |
31 | | -`?gelqf` will be chosen if `pivoted == false`. |
| 26 | +Algorithm type to denote the standard LAPACK algorithm for computing the LQ decomposition of |
| 27 | +a matrix using Householder reflectors. The specific LAPACK function can be controlled using |
| 28 | +the keyword arugments, i.e. `?gelqt` will be chosen if `blocksize > 1` or `?gelqf` will be |
| 29 | +chosen if `pivoted == false`. |
32 | 30 | """ |
33 | 31 | @algdef LAPACK_HouseholderLQ |
| 32 | + |
34 | 33 | # TODO: |
35 | 34 | @algdef LAPACK_HouseholderQL |
36 | 35 | @algdef LAPACK_HouseholderRQ |
|
0 commit comments