Skip to content

Commit 19f38a0

Browse files
author
Matthias Koeppe
committed
Fix up doc
1 parent a60b315 commit 19f38a0

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

src/doc/en/reference/matrices/index.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ objects like operation tables (e.g. the multiplication table of a group).
9494
sage/matrix/matrix_misc
9595
sage/matrix/matrix_window
9696
sage/matrix/misc
97+
sage/matrix/misc_mpfr
98+
sage/matrix/misc_flint
9799
sage/matrix/symplectic_basis
98100
sage/matrix/compute_J_ideal
99101

src/sage/matrix/misc.pyx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ hadamard_row_bound_mpfr = \
3131

3232

3333
def matrix_integer_sparse_rational_reconstruction(Matrix_integer_sparse A, Integer N):
34-
"""
34+
r"""
3535
Given a sparse matrix over the integers and an integer modulus, do
3636
rational reconstruction on all entries of the matrix, viewed as
37-
numbers mod N.
37+
numbers mod `N`.
3838
3939
EXAMPLES::
4040
@@ -327,7 +327,7 @@ def matrix_rational_echelon_form_multimodular(Matrix self, height_guess=None, pr
327327

328328

329329
def cmp_pivots(x, y):
330-
"""
330+
r"""
331331
Compare two sequences of pivot columns.
332332
333333
If `x` is shorter than `y`, return `-1`, i.e., `x < y`, "not as good".

src/sage/matrix/misc_flint.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ from .matrix_rational_dense cimport Matrix_rational_dense
1818

1919

2020
def matrix_integer_dense_rational_reconstruction(Matrix_integer_dense A, Integer N):
21-
"""
21+
r"""
2222
Given a matrix over the integers and an integer modulus, do
2323
rational reconstruction on all entries of the matrix, viewed as
2424
numbers mod `N`. This is done efficiently by assuming there is a

src/sage/matrix/misc_mpfr.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ from .matrix0 cimport Matrix
1313

1414

1515
def hadamard_row_bound_mpfr(Matrix A):
16-
"""
16+
r"""
1717
Given a matrix `A` with entries that coerce to ``RR``, compute the row
1818
Hadamard bound on the determinant.
1919

0 commit comments

Comments
 (0)