Skip to content

Commit 6699447

Browse files
authored
Render DifferentialEquation Documentation (#3850)
* ls * Changes to ode.rst to make docs appear. * Should be working now
1 parent 3036da5 commit 6699447

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

docs/source/api.rst

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ API Reference
2121
api/model_graph
2222
api/variables
2323
api/shape_utils
24+
api/ode
2425

2526

2627
Indices and tables

docs/source/api/ode.rst

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
====
2+
ODE
3+
====
4+
5+
This submodule contains tools used to perform inference on ordinary differential equations.
6+
7+
.. currentmodule:: pymc3.ode
8+
9+
.. autosummary::
10+
11+
.. automodule:: pymc3.ode
12+
:members: DifferentialEquation

pymc3/ode/ode.py

+3
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ class DifferentialEquation(theano.Op):
4545
Number of parameters in the differential equation.
4646
t0: float
4747
Time corresponding to the initial condition
48+
49+
Examples
50+
--------
4851
4952
.. code-block:: python
5053

0 commit comments

Comments
 (0)