@@ -1506,8 +1506,8 @@ end
15061506
15071507Compute the Cholesky (``LL'``) factorization of `A`, reusing the symbolic
15081508factorization `F`. `A` must be a [`SparseMatrixCSC`](@ref) or a [`Symmetric`](@ref)/
1509- [`Hermitian`](@ref) view of a `SparseMatrixCSC`. Note that even if `A` doesn't
1510- have the type tag, it must still be symmetric or Hermitian.
1509+ [`Hermitian`](@ref) view of a `SparseMatrixCSC`. Note that if `A` doesn't
1510+ have the type tag, it must itself be symmetric or Hermitian.
15111511
15121512See also [`cholesky`](@ref).
15131513
@@ -1542,8 +1542,8 @@ end
15421542
15431543Compute the Cholesky factorization of a sparse positive definite matrix `A`.
15441544`A` must be a [`SparseMatrixCSC`](@ref) or a [`Symmetric`](@ref)/[`Hermitian`](@ref)
1545- view of a `SparseMatrixCSC`. Note that even if `A` doesn't
1546- have the type tag, it must still be symmetric or Hermitian.
1545+ view of a `SparseMatrixCSC`. Note that if `A` doesn't
1546+ have the type tag, it must itself be symmetric or Hermitian.
15471547If `perm` is not given, a fill-reducing permutation is used.
15481548`F = cholesky(A)` is most frequently used to solve systems of equations with `F\\ b`,
15491549but also the methods [`diag`](@ref), [`det`](@ref), and
@@ -1676,8 +1676,8 @@ end
16761676
16771677Compute the ``LDL'`` factorization of `A`, reusing the symbolic factorization `F`.
16781678`A` must be a [`SparseMatrixCSC`](@ref) or a [`Symmetric`](@ref)/[`Hermitian`](@ref)
1679- view of a `SparseMatrixCSC`. Note that even if `A` doesn't
1680- have the type tag, it must still be symmetric or Hermitian.
1679+ view of a `SparseMatrixCSC`. Note that if `A` doesn't
1680+ have the type tag, it must itself be symmetric or Hermitian.
16811681
16821682See also [`ldlt`](@ref).
16831683
@@ -1718,8 +1718,8 @@ end
17181718
17191719Compute the ``LDL'`` factorization of a sparse matrix `A`.
17201720`A` must be a [`SparseMatrixCSC`](@ref) or a [`Symmetric`](@ref)/[`Hermitian`](@ref)
1721- view of a `SparseMatrixCSC`. Note that even if `A` doesn't
1722- have the type tag, it must still be symmetric or Hermitian.
1721+ view of a `SparseMatrixCSC`. Note that if `A` doesn't
1722+ have the type tag, it must itself be symmetric or Hermitian.
17231723A fill-reducing permutation is used. `F = ldlt(A)` is most frequently
17241724used to solve systems of equations `A*x = b` with `F\\ b`. The returned
17251725factorization object `F` also supports the methods [`diag`](@ref),
0 commit comments