Skip to content

Commit a49e31e

Browse files
authored
Merge pull request numpy#29775 from star1327p/link-cross-ref
DOC: Link cross references in numpy documentation
2 parents c8c3ea4 + 0a54c50 commit a49e31e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

numpy/fft/_pocketfft.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def fft(a, n=None, axis=-1, norm=None, out=None):
124124
125125
This function computes the one-dimensional *n*-point discrete Fourier
126126
Transform (DFT) with the efficient Fast Fourier Transform (FFT)
127-
algorithm [CT].
127+
algorithm [CT]_.
128128
129129
Parameters
130130
----------

numpy/lib/_shape_base_impl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1110,7 +1110,7 @@ def kron(a, b):
11101110
-----
11111111
The function assumes that the number of dimensions of `a` and `b`
11121112
are the same, if necessary prepending the smallest with ones.
1113-
If ``a.shape = (r0,r1,..,rN)`` and ``b.shape = (s0,s1,...,sN)``,
1113+
If ``a.shape = (r0,r1,...,rN)`` and ``b.shape = (s0,s1,...,sN)``,
11141114
the Kronecker product has shape ``(r0*s0, r1*s1, ..., rN*SN)``.
11151115
The elements are products of elements from `a` and `b`, organized
11161116
explicitly by::

numpy/linalg/_linalg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2073,9 +2073,9 @@ def matrix_rank(A, tol=None, hermitian=False, *, rtol=None):
20732073
The default threshold to detect rank deficiency is a test on the magnitude
20742074
of the singular values of `A`. By default, we identify singular values
20752075
less than ``S.max() * max(M, N) * eps`` as indicating rank deficiency
2076-
(with the symbols defined above). This is the algorithm MATLAB uses [1].
2076+
(with the symbols defined above). This is the algorithm MATLAB uses [1]_.
20772077
It also appears in *Numerical recipes* in the discussion of SVD solutions
2078-
for linear least squares [2].
2078+
for linear least squares [2]_.
20792079
20802080
This default threshold is designed to detect rank deficiency accounting
20812081
for the numerical errors of the SVD computation. Imagine that there

0 commit comments

Comments
 (0)