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 d9b7ed5 commit 1b7c406Copy full SHA for 1b7c406
src/solvers/umfpack.jl
@@ -356,22 +356,6 @@ See also [`lu`](@ref)
356
357
!!! compat "Julia 1.5"
358
`lu!` for `UmfpackLU` requires at least Julia 1.5.
359
-
360
-# Examples
361
-```jldoctest
362
-julia> A = sparse(Float64[1.0 2.0; 0.0 3.0]);
363
364
-julia> F = lu(A);
365
366
-julia> B = sparse(Float64[1.0 1.0; 0.0 1.0]);
367
368
-julia> lu!(F, B);
369
370
-julia> F \\ ones(2)
371
-2-element Vector{Float64}:
372
- 0.0
373
- 1.0
374
-```
375
"""
376
function lu!(F::GBUmfpackLU{Tv}, S::AbstractGBMatrix;
377
check::Bool=true, reuse_symbolic::Bool=true, q=nothing) where {Tv}
0 commit comments