We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74c32bc commit 5b4383cCopy full SHA for 5b4383c
src/triangular.jl
@@ -330,7 +330,7 @@ function _bidiag_backsub!(M)
330
bj -= ev[j] * bj1
331
dvj = dv[j]
332
if iszero(dvj)
333
- throw(SingularEbception(j))
+ throw(SingularException(j))
334
end
335
bj = dvj\bj
336
b[j] = bj1 = bj
@@ -350,7 +350,7 @@ function _bidiag_forwardsub!(M)
350
bj -= ev[j - 1] * bj1
351
352
353
354
355
356
0 commit comments