Skip to content

Commit

Permalink
Merge pull request #181 from ArnoStrouwen/canon
Browse files Browse the repository at this point in the history
canonize docs
  • Loading branch information
ChrisRackauckas authored Oct 18, 2022
2 parents 07805f1 + c1aaa72 commit da0a405
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# DiffEqParamEstim.jl

[![Join the chat at https://julialang.zulipchat.com #sciml-bridged](https://img.shields.io/static/v1?label=Zulip&message=chat&color=9558b2&labelColor=389826)](https://julialang.zulipchat.com/#narrow/stream/279055-sciml-bridged)
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](http://diffeqparamestim.sciml.ai/stable/)
[![Global Docs](https://img.shields.io/badge/docs-SciML-blue.svg)](https://docs.sciml.ai/dev/modules/DiffEqParamEstim/)
[![Global Docs](https://img.shields.io/badge/docs-SciML-blue.svg)](https://docs.sciml.ai/ParameterizedFunctions/stable/)

[![codecov](https://codecov.io/gh/SciML/DiffEqParamEstim.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/SciML/DiffEqParamEstim.jl)
[![Build Status](https://github.com/SciML/DiffEqParamEstim.jl/workflows/CI/badge.svg)](https://github.com/SciML/DiffEqParamEstim.jl/actions?query=workflow%3ACI)
Expand All @@ -18,6 +17,6 @@ functionality should check out [DifferentialEquations.jl](https://github.com/Sci
## Tutorials and Documentation

For information on using the package,
[see the stable documentation](https://diffeqparamestim.sciml.ai/stable/). Use the
[in-development documentation](https://diffeqparamestim.sciml.ai/dev/) for the version of
[see the stable documentation](https://docs.sciml.ai/ParameterizedFunctions/stable/). Use the
[in-development documentation](https://docs.sciml.ai/ParameterizedFunctions/dev/) for the version of
the documentation, which contains the unreleased features.
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ makedocs(sitename = "DiffEqParamEstim.jl",
doctest = false,
modules = [DiffEqParamEstim],
format = Documenter.HTML(assets = ["assets/favicon.ico"],
canonical = "https://diffeqparamestim.sciml.ai/stable/"),
canonical = "https://docs.sciml.ai/DiffEqParamEstim/stable/"),
pages = pages)

deploydocs(repo = "github.com/SciML/DiffEqParamEstim.jl";
Expand Down
2 changes: 1 addition & 1 deletion docs/src/tutorials/ODE_inference.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ randomized = VectorOfArray([(sol(t[i]) + .01randn(2)) for i in 1:length(t)])
data = convert(Array,randomized)
```

Here we used `VectorOfArray` from [RecursiveArrayTools.jl](https://github.com/ChrisRackauckas/RecursiveArrayTools.jl)
Here we used `VectorOfArray` from [RecursiveArrayTools.jl](https://docs.sciml.ai/RecursiveArrayTools/stable/)
to turn the result of an ODE into a matrix.

If we plot the solution with the parameter at `a=1.42`, we get the following:
Expand Down
2 changes: 1 addition & 1 deletion docs/src/tutorials/jump.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Using JuMP with DiffEqParamEstim

[JuMP](https://github.com/JuliaOpt/JuMP.jl) is a domain-specific modeling language
[JuMP](https://jump.dev/) is a domain-specific modeling language
for mathematical optimization embedded in Julia.

```julia
Expand Down

0 comments on commit da0a405

Please sign in to comment.