We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
DifferentialEquation
1 parent 3036da5 commit 6699447Copy full SHA for 6699447
docs/source/api.rst
@@ -21,6 +21,7 @@ API Reference
21
api/model_graph
22
api/variables
23
api/shape_utils
24
+ api/ode
25
26
27
Indices and tables
docs/source/api/ode.rst
@@ -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
@@ -45,6 +45,9 @@ class DifferentialEquation(theano.Op):
45
Number of parameters in the differential equation.
46
t0: float
47
Time corresponding to the initial condition
48
49
+ Examples
50
+ --------
51
52
.. code-block:: python
53
0 commit comments