Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC: Remove double section and too long header underline. #12526

Merged
merged 1 commit into from Jul 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 3 additions & 7 deletions scipy/interpolate/_fitpack_impl.py
Expand Up @@ -390,13 +390,6 @@ def splrep(x, y, w=None, xb=None, xe=None, k=3, task=0, s=None, t=None,
msg : str, optional
A message corresponding to the integer flag, ier.
Notes
-----
See splev for evaluation of the spline and its derivatives.
The user is responsible for assuring that the values of *x* are unique.
Otherwise, *splrep* will not return sensible results.
See Also
--------
UnivariateSpline, BivariateSpline
Expand All @@ -408,6 +401,9 @@ def splrep(x, y, w=None, xb=None, xe=None, k=3, task=0, s=None, t=None,
See splev for evaluation of the spline and its derivatives. Uses the
FORTRAN routine curfit from FITPACK.
The user is responsible for assuring that the values of *x* are unique.
Otherwise, *splrep* will not return sensible results.
If provided, knots `t` must satisfy the Schoenberg-Whitney conditions,
i.e., there must be a subset of data points ``x[j]`` such that
``t[j] < x[j] < t[j+k+1]``, for ``j=0, 1,...,n-k-2``.
Expand Down
8 changes: 4 additions & 4 deletions scipy/stats/_multivariate.py
Expand Up @@ -3322,7 +3322,7 @@ class special_ortho_group_gen(multi_rv_generic):
Dimension of matrices
Notes
----------
-----
This class is wrapping the random_rot code from the MDP Toolkit,
https://github.com/mdp-toolkit/mdp-toolkit
Expand Down Expand Up @@ -3479,7 +3479,7 @@ class ortho_group_gen(multi_rv_generic):
Dimension of matrices
Notes
----------
-----
This class is closely related to `special_ortho_group`.
Some care is taken to avoid numerical error, as per the paper by Mezzadri.
Expand Down Expand Up @@ -3586,7 +3586,7 @@ class random_correlation_gen(multi_rv_generic):
Eigenvalues of correlation matrix.
Notes
----------
-----
Generates a random correlation matrix following a numerically stable
algorithm spelled out by Davies & Higham. This algorithm uses a single O(N)
Expand Down Expand Up @@ -3777,7 +3777,7 @@ class unitary_group_gen(multi_rv_generic):
Dimension of matrices
Notes
----------
-----
This class is similar to `ortho_group`.
References
Expand Down