Skip to content

Commit

Permalink
update docs for Documenter v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hyrodium committed Sep 19, 2023
1 parent 3065ff7 commit 8af88dc
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 8 deletions.
1 change: 1 addition & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ makedocs(;
canonical = "https://hyrodium.github.io/BasicBSpline.jl/stable/",
assets = ["assets/favicon.ico", "assets/custom.css"],
edit_link="main",
repolink="https://github.com/hyrodium/BasicBSpline.jl"
),
pages = [
"Home" => "index.md",
Expand Down
8 changes: 0 additions & 8 deletions docs/src/internal.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,6 @@ BasicBSpline._vec
BasicBSpline._lower_R
```

```@docs
BasicBSpline._changebasis_R
```

```@docs
BasicBSpline._changebasis_I
```

```@docs
BasicBSpline._changebasis_sim
```
Expand Down
4 changes: 4 additions & 0 deletions docs/src/math-bsplinebasis.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,10 @@ bsplinebasis₋₀
bsplinebasis
```

```@docs
BasicBSpline.bsplinebasis₋₀I
```

## B-spline basis functions at specific point
Sometimes, you may need the non-zero values of B-spline basis functions at specific point.
The `bsplinebasisall` function is much more efficient than evaluating B-spline functions one by one with `bsplinebasis` function.
Expand Down
4 changes: 4 additions & 0 deletions docs/src/math-bsplinespace.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,7 @@ dim
```@docs
exactdim_R(P::BSplineSpace)
```

```@docs
exactdim_I(P::BSplineSpace)
```
8 changes: 8 additions & 0 deletions docs/src/math-inclusive.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,14 @@ nothing # hide
<object type="text/html" data="../subbsplineplot2.html" style="width:100%;height:420px;"></object>
```

```@docs
changebasis_R
```

```@docs
changebasis_I
```

```@docs
issqsubset
```
Expand Down
9 changes: 9 additions & 0 deletions docs/src/math-knotvector.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ KnotVector
UniformKnotVector
```

```@docs
SubKnotVector
```

```@docs
EmptyKnotVector
```
Expand Down Expand Up @@ -63,3 +67,8 @@ unique(k::AbstractKnotVector)
```@docs
countknots(k::AbstractKnotVector, t::Real)
```

## `KnotVector` with string macro
```@docs
@knotvector_str
```

0 comments on commit 8af88dc

Please sign in to comment.