diff options
author | Michael Seifert <michaelseifert04@yahoo.de> | 2017-09-12 18:30:25 +0200 |
---|---|---|
committer | Michael Seifert <michaelseifert04@yahoo.de> | 2017-09-12 18:30:25 +0200 |
commit | 15a3174d02b319e303698c377ffcc9fbc0d4c231 (patch) | |
tree | 223635404a4fd942de3e6996f1df817803105580 /numpy/polynomial/polynomial.py | |
parent | 5d8bfdd05cff9895fcbf7bb3e30b229979db0a4a (diff) | |
download | numpy-15a3174d02b319e303698c377ffcc9fbc0d4c231.tar.gz |
DOC: Fix inline "math" directives [skip ci]
Diffstat (limited to 'numpy/polynomial/polynomial.py')
-rw-r--r-- | numpy/polynomial/polynomial.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/polynomial/polynomial.py b/numpy/polynomial/polynomial.py index 1528de342..1be775f6a 100644 --- a/numpy/polynomial/polynomial.py +++ b/numpy/polynomial/polynomial.py @@ -619,7 +619,7 @@ def polyint(c, m=1, k=[], lbnd=0, scl=1, axis=0): Note that the result of each integration is *multiplied* by `scl`. Why is this important to note? Say one is making a linear change of variable :math:`u = ax + b` in an integral relative to `x`. Then - .. math::`dx = du/a`, so one will need to set `scl` equal to + :math:`dx = du/a`, so one will need to set `scl` equal to :math:`1/a` - perhaps not what one would have first thought. Examples |