-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
39 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# WENDy.jl | ||
|
||
*Weak form Estimation of Nonlinear Dynamics in Julia.* | ||
|
||
| **Documentation** | **Build Status** | | ||
|:-------------------------------------------------------------------------------:|:-----------------------------------------------------------------------------------------------:| | ||
| [![][docs-stable-img]][docs-stable-url] [![][docs-dev-img]][docs-dev-url] | [![][GHA-img]][GHA-url] [![][codecov-img]][codecov-url] [![PkgEval][pkgeval-img]][pkgeval-url] | | ||
|
||
|
||
## Installation | ||
|
||
The package can be installed with the Julia package manager. | ||
From the Julia REPL, type `]` to enter the Pkg REPL mode and run: | ||
|
||
``` | ||
pkg> add WENDy | ||
``` | ||
|
||
Or, equivalently, via the `Pkg` API: | ||
|
||
```julia | ||
julia> import Pkg; Pkg.add("Documenter") | ||
``` | ||
|
||
## Documentation | ||
|
||
- [**STABLE**][docs-stable-url] — **documentation of the most recently tagged version.** | ||
- [**DEVEL**][docs-dev-url] — *documentation of the in-development version.* | ||
|
||
## Publication | ||
The work comes from the the MathBio Group at University of Colorado Boulder. For further reading find our paper at [arxiv link](https://arxiv.org/). | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
```@autodocs | ||
Modules = [WENDy] | ||
Private = false | ||
Order=[:function, :type] | ||
``` |