blob: e8654caf943b40a5e9017be9973dbe878ab90464 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Sparse Linear Algebra
```@meta
DocTestSetup = :(using LinearAlgebra, SparseArrays, SuiteSparse)
```
Sparse matrix solvers call functions from [SuiteSparse](http://suitesparse.com). The following factorizations are available:
| Type | Description |
|:--------------------------------- |:--------------------------------------------- |
| `SuiteSparse.CHOLMOD.Factor` | Cholesky factorization |
| `SuiteSparse.UMFPACK.UmfpackLU` | LU factorization |
| `SuiteSparse.SPQR.QRSparse` | QR factorization |
Other solvers such as [Pardiso.jl](https://github.com/JuliaSparse/Pardiso.jl/) are as external packages. [Arpack.jl](https://julialinearalgebra.github.io/Arpack.jl/stable/) provides `eigs` and `svds` for iterative solution of eigensystems and singular value decompositions.
These factorizations are described in the [`Linear Algebra`](@ref man-linalg) section of the manual:
1. [`cholesky`](@ref)
2. [`ldlt`](@ref)
3. [`lu`](@ref)
4. [`qr`](@ref)
```@docs
SuiteSparse.CHOLMOD.lowrankupdate
SuiteSparse.CHOLMOD.lowrankupdate!
SuiteSparse.CHOLMOD.lowrankdowndate
SuiteSparse.CHOLMOD.lowrankdowndate!
SuiteSparse.CHOLMOD.lowrankupdowndate!
```
```@meta
DocTestSetup = nothing
```
|