Skip to content

Commit a22910c

Browse files
committed
smal formatting changes
1 parent 208a571 commit a22910c

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

src/implementations/decompositions.jl

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,24 @@
1212
"""
1313
LAPACK_HoudeholderQR(; blocksize, positive = false, pivoted = false)
1414
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`.
2120
"""
2221
@algdef LAPACK_HouseholderQR
2322

2423
"""
2524
LAPACK_HoudeholderLQ(; blocksize, positive = false)
2625
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`.
3230
"""
3331
@algdef LAPACK_HouseholderLQ
32+
3433
# TODO:
3534
@algdef LAPACK_HouseholderQL
3635
@algdef LAPACK_HouseholderRQ

0 commit comments

Comments
 (0)