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 99d11d8 commit 97ee7d2Copy full SHA for 97ee7d2
src/LinearAlgebra.jl
@@ -398,7 +398,7 @@ julia> Y = copy(B);
398
399
julia> ldiv!(Y, qr(A), B); # also try qr!(A) for the 2nd arg
400
401
-julia> Y ≈ A \ B
+julia> Y ≈ A \\ B
402
true
403
```
404
"""
@@ -428,7 +428,7 @@ julia> B0 = copy(B);
428
429
julia> ldiv!(lu(A), B); # also try lu!(A) for the 1st arg
430
431
-julia> B ≈ A \ B0
+julia> B ≈ A \\ B0
432
433
434
0 commit comments