Skip to content

Commit

Permalink
[documentation] Replace symmetric by Hermitian
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Oct 16, 2022
1 parent a42db8e commit 3c580a2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Overdetermined sytems are less common but also occur.

where **_A_** can have any shape.

5. Saddle-point and symmetric quasi-definite (SQD) systems
5. Saddle-point and Hermitian quasi-definite systems

<p align="center">
[<b><i>M </i></b>&nbsp;&nbsp;&nbsp;<b><i> A</i></b>]&nbsp; [<b><i>x</i></b>] = [<b><i>b</i></b>]
Expand All @@ -86,7 +86,7 @@ where **_A_** can have any shape.

where **_A_** can have any shape.

6. Generalized saddle-point and unsymmetric partitioned systems
6. Generalized saddle-point and non-Hermitian partitioned systems

<p align="center">
[<b><i>M</i></b>&nbsp;&nbsp;&nbsp;<b><i>A</i></b>]&nbsp; [<b><i>x</i></b>] = [<b><i>b</i></b>]
Expand Down
10 changes: 5 additions & 5 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ makedocs(
pages = ["Home" => "index.md",
"API" => "api.md",
"Krylov processes" => "processes.md",
"Krylov methods" => ["Symmetric positive definite linear systems" => "solvers/spd.md",
"Symmetric indefinite linear systems" => "solvers/sid.md",
"Unsymmetric linear systems" => "solvers/unsymmetric.md",
"Krylov methods" => ["Hermitian positive definite linear systems" => "solvers/spd.md",
"Hermitian indefinite linear systems" => "solvers/sid.md",
"Non-Hermitian linear systems" => "solvers/unsymmetric.md",
"Least-norm problems" => "solvers/ln.md",
"Least-squares problems" => "solvers/ls.md",
"Adjoint systems" => "solvers/as.md",
"Saddle-point and symmetric quasi-definite systems" => "solvers/sp_sqd.md",
"Generalized saddle-point and unsymmetric partitioned systems" => "solvers/gsp.md"],
"Saddle-point and Hermitian quasi-definite systems" => "solvers/sp_sqd.md",
"Generalized saddle-point and non-Hermitian partitioned systems" => "solvers/gsp.md"],
"In-place methods" => "inplace.md",
"Preconditioners" => "preconditioners.md",
"GPU support" => "gpu.md",
Expand Down
4 changes: 2 additions & 2 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ Overdetermined sytems are less common but also occur.

where **_A_** can have any shape.

5 - Saddle-point and symmetric quasi-definite (SQD) systems
5 - Saddle-point and Hermitian quasi-definite systems

```math
\begin{bmatrix} M & \phantom{-}A \\ A^H & -N \end{bmatrix} \begin{bmatrix} x \\ y \end{bmatrix} = \left(\begin{bmatrix} b \\ 0 \end{bmatrix},\begin{bmatrix} 0 \\ c \end{bmatrix},\begin{bmatrix} b \\ c \end{bmatrix}\right)
```

where **_A_** can have any shape.

6 - Generalized saddle-point and unsymmetric partitioned systems
6 - Generalized saddle-point and non-Hermitian partitioned systems

```math
\begin{bmatrix} M & A \\ B & N \end{bmatrix} \begin{bmatrix} x \\ y \end{bmatrix} = \begin{bmatrix} b \\ c \end{bmatrix}
Expand Down

0 comments on commit 3c580a2

Please sign in to comment.