summaryrefslogtreecommitdiff
path: root/numpy/polynomial/laguerre.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/polynomial/laguerre.py')
-rw-r--r--numpy/polynomial/laguerre.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/polynomial/laguerre.py b/numpy/polynomial/laguerre.py
index ffd032883..49b0a9247 100644
--- a/numpy/polynomial/laguerre.py
+++ b/numpy/polynomial/laguerre.py
@@ -1007,7 +1007,7 @@ def laggrid2d(x, y, c):
This function returns the values:
- .. math:: p(a,b) = \sum_{i,j} c_{i,j} * L_i(a) * L_j(b)
+ .. math:: p(a,b) = \\sum_{i,j} c_{i,j} * L_i(a) * L_j(b)
where the points `(a, b)` consist of all pairs formed by taking
`a` from `x` and `b` from `y`. The resulting points form a grid with
@@ -1674,8 +1674,8 @@ def laggauss(deg):
Computes the sample points and weights for Gauss-Laguerre quadrature.
These sample points and weights will correctly integrate polynomials of
- degree :math:`2*deg - 1` or less over the interval :math:`[0, \inf]`
- with the weight function :math:`f(x) = \exp(-x)`.
+ degree :math:`2*deg - 1` or less over the interval :math:`[0, \\inf]`
+ with the weight function :math:`f(x) = \\exp(-x)`.
Parameters
----------
@@ -1736,7 +1736,7 @@ def lagweight(x):
"""Weight function of the Laguerre polynomials.
The weight function is :math:`exp(-x)` and the interval of integration
- is :math:`[0, \inf]`. The Laguerre polynomials are orthogonal, but not
+ is :math:`[0, \\inf]`. The Laguerre polynomials are orthogonal, but not
normalized, with respect to this weight function.
Parameters