summaryrefslogtreecommitdiff
path: root/numpy/polynomial/chebyshev.py
diff options
context:
space:
mode:
authorMike Toews <mwtoews@gmail.com>2018-06-16 18:18:19 +1200
committerMike Toews <mwtoews@gmail.com>2018-06-16 18:18:19 +1200
commit83828f52b287fefb3d8753a21bd3441997a4d687 (patch)
treef62c5aa84a9db02f3b6460e66b56cd299e4a794f /numpy/polynomial/chebyshev.py
parentbf4a3e59b0cfb1e999845dc5228dfa1f54851b9f (diff)
downloadnumpy-83828f52b287fefb3d8753a21bd3441997a4d687.tar.gz
HTTP -> HTTPS, and other linkrot fixes
Diffstat (limited to 'numpy/polynomial/chebyshev.py')
-rw-r--r--numpy/polynomial/chebyshev.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/polynomial/chebyshev.py b/numpy/polynomial/chebyshev.py
index 8add0acbc..946e0499c 100644
--- a/numpy/polynomial/chebyshev.py
+++ b/numpy/polynomial/chebyshev.py
@@ -83,7 +83,7 @@ References
----------
.. [1] A. T. Benjamin, et al., "Combinatorial Trigonometry with Chebyshev
Polynomials," *Journal of Statistical Planning and Inference 14*, 2008
- (preprint: http://www.math.hmc.edu/~benjamin/papers/CombTrig.pdf, pg. 4)
+ (preprint: https://www.math.hmc.edu/~benjamin/papers/CombTrig.pdf, pg. 4)
"""
from __future__ import division, absolute_import, print_function
@@ -1708,7 +1708,7 @@ def chebfit(x, y, deg, rcond=None, full=False, w=None):
References
----------
.. [1] Wikipedia, "Curve fitting",
- http://en.wikipedia.org/wiki/Curve_fitting
+ https://en.wikipedia.org/wiki/Curve_fitting
Examples
--------