Skip to content

Commit 61991d4

Browse files
authored
Fix docstring in plotgrid (#189)
* Fix docstring * vers * Add missing docstring * Add missing docstring
1 parent e178b30 commit 61991d4

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ContinuumArrays"
22
uuid = "7ae1f121-cc2c-504b-ac30-9b923412ae5c"
3-
version = "0.18.4"
3+
version = "0.18.5"
44

55
[deps]
66
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"

docs/src/index.md

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ product of the specified sizes, similar to `plan_fft`.
1717
2. `diff(::MyBasis, dims=1)` to support differentiation and `Derivative`.
1818
3. `grammatrix(::MyBasis)` to support `Q'Q`.
1919
4. `ContinuumArrays._sum(::MyBasis, dims)` and `ContinuumArrays._cumsum(::MyBasis, dims)` to support definite and indefinite integeration.
20+
5. `plotgrid(::MyBasis, n...)`: return `n` grid points suitable for plotting the basis. The default value for `n` is 10,000.
2021

2122

2223
## Routines
@@ -34,6 +35,9 @@ expand
3435
```@docs
3536
grid
3637
```
38+
```@docs
39+
plotgrid
40+
```
3741

3842

3943
## Interal Routines

src/plotting.jl

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ returns a grid of points suitable for plotting. This may include
99
endpoints or singular points not included in `grid`. `n` specifies
1010
the number of coefficients.
1111
"""
12-
1312
plotgrid(P, n...) = plotgrid_layout(MemoryLayout(P), P, n...)
1413

1514
plotgrid_layout(lay, P, n...) = plotgrid_size(size(P), P, n...)

0 commit comments

Comments
 (0)