Skip to content

Commit a03e703

Browse files
authored
Correct logdet docstring (#51387)
1 parent b3f02e7 commit a03e703

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/generic.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1689,8 +1689,8 @@ logabsdet(a::Number) = log(abs(a)), sign(a)
16891689
"""
16901690
logdet(M)
16911691
1692-
Log of matrix determinant. Equivalent to `log(det(M))`, but may provide
1693-
increased accuracy and/or speed.
1692+
Logarithm of matrix determinant. Equivalent to `log(det(M))`, but may provide
1693+
increased accuracy and avoids overflow/underflow.
16941694
16951695
# Examples
16961696
```jldoctest

0 commit comments

Comments
 (0)