Skip to content

Commit 2bb4b43

Browse files
committed
Merge branch 'master' of github.com:florisvb/PyNumDiff into improve-fd
2 parents 61a1be5 + 62d27ee commit 2bb4b43

4 files changed

Lines changed: 21 additions & 15 deletions

File tree

.readthedocs.yaml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
version: 2
22

3+
sphinx:
4+
configuration: docs/source/conf.py
5+
36
build:
47
os: ubuntu-22.04
5-
docs_dir: docs
6-
builder: html # Use the 'sphinx' builder (default for 'make html')
8+
tools:
9+
python: "3.11"
710

11+
python:
12+
install:
13+
- method: pip
14+
path: .
15+
extra_requirements:
16+
- docs

docs/source/utils/_pi_cruise_control.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

pynumdiff/kalman_smooth/_kalman_smooth.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ def constant_velocity(x, dt, params=None, options=None, r=None, q=None, forwardb
113113
:param list[float] params: (**deprecated**, prefer :code:`r` and :code:`q`)
114114
:param options: (**deprecated**, prefer :code:`forwardbackward`)
115115
a dictionary consisting of {'forwardbackward': (bool)}
116-
param float r: variance of the signal noise
117-
param float q: variance of the constant velocity model
116+
:param float r: variance of the signal noise
117+
:param float q: variance of the constant velocity model
118118
:param bool forwardbackward: indicates whether to run smoother forwards and backwards
119119
(usually achieves better estimate at end points)
120120
@@ -148,8 +148,8 @@ def constant_acceleration(x, dt, params=None, options=None, r=None, q=None, forw
148148
:param list[float] params: (**deprecated**, prefer :code:`r` and :code:`q`)
149149
:param options: (**deprecated**, prefer :code:`forwardbackward`)
150150
a dictionary consisting of {'forwardbackward': (bool)}
151-
param float r: variance of the signal noise
152-
param float q: variance of the constant acceleration model
151+
:param float r: variance of the signal noise
152+
:param float q: variance of the constant acceleration model
153153
:param bool forwardbackward: indicates whether to run smoother forwards and backwards
154154
(usually achieves better estimate at end points)
155155
@@ -187,8 +187,8 @@ def constant_jerk(x, dt, params=None, options=None, r=None, q=None, forwardbackw
187187
:param list[float] params: (**deprecated**, prefer :code:`r` and :code:`q`)
188188
:param options: (**deprecated**, prefer :code:`forwardbackward`)
189189
a dictionary consisting of {'forwardbackward': (bool)}
190-
param float r: variance of the signal noise
191-
param float q: variance of the constant jerk model
190+
:param float r: variance of the signal noise
191+
:param float q: variance of the constant jerk model
192192
:param bool forwardbackward: indicates whether to run smoother forwards and backwards
193193
(usually achieves better estimate at end points)
194194

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ dev = [
4646
"cvxpy",
4747
"Mosek"
4848
]
49+
docs = [
50+
"sphinx",
51+
"sphinx_rtd_theme"
52+
]
4953

5054
[tool.setuptools_scm]
5155
write_to = "pynumdiff/_version.py"

0 commit comments

Comments
 (0)