Skip to content

Commit d9a3167

Browse files
committed
DOC Fix ode utils.py doc string.
1 parent c7a41c3 commit d9a3167

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

Diff for: pymc3/ode/utils.py

+13-8
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,19 @@ def augment_system(ode_func, n, m):
1111
a compiled function which allows for computation of gradients of the
1212
differential equation's solition with repsect to the parameters.
1313
14-
Args:
15-
ode_func (function): Differential equation. Returns array-like
16-
n: Number of rows of the sensitivity matrix
17-
m: Number of columns of the sensitivity matrix
18-
19-
Returns:
20-
system (function): Augemted system of differential equations.
21-
14+
Parameters
15+
----------
16+
ode_func : function
17+
Differential equation. Returns array-like.
18+
n : int
19+
Number of rows of the sensitivity matrix.
20+
m : int
21+
Number of columns of the sensitivity matrix.
22+
23+
Returns
24+
-------
25+
system : function
26+
Augemted system of differential equations.
2227
"""
2328

2429
# Present state of the system

0 commit comments

Comments
 (0)