Skip to content

Commit 69b7317

Browse files
standard doc is better for AbstractGramMatrix
1 parent 48ce507 commit 69b7317

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

docs/src/index.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ For this documentation, please see the documentation for [FastTransforms](https:
1212

1313
### Fast Cholesky factorization of the Gram matrix
1414

15-
```@docs
16-
AbstractGramMatrix
17-
```
18-
1915
```@docs
2016
GramMatrix
2117
```

src/GramMatrix.jl

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
"""
2-
AbstractGramMatrix
3-
4-
Supertype of Gram matrices such as [`GramMatrix`](@ref) and [`ChebyshevGramMatrix`](@ref).
5-
"""
61
abstract type AbstractGramMatrix{T} <: LayoutMatrix{T} end
72

83
@inline issymmetric(G::AbstractGramMatrix) = true
@@ -23,7 +18,7 @@ the Gram matrix satisfies the skew-symmetric rank-2 displacement equation (``X =
2318
```math
2419
X^\\top W - WX = GJG^\\top,
2520
```
26-
where ``J = \\begin{pmatrix} 0 & 1\\ -1 & 0\\end{pmatrix}`` and where:
21+
where ``J = \\begin{pmatrix} 0 & 1\\\\ -1 & 0\\end{pmatrix}`` and where:
2722
```math
2823
G_{:, 1} = e_n,\\quad{\\rm and}\\quad G_{:, 2} = W_{n-1, :}X_{n-1, n} - X^\\top W_{:, n}.
2924
```

0 commit comments

Comments
 (0)