Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Trac #17220: Fix documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
cheuberg committed Nov 28, 2015
1 parent 2190aa4 commit b3a2a08
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/sage/matrix/matrix_complex_ball_dense.pyx
Expand Up @@ -9,7 +9,6 @@ This is a rudimentary binding to the `Arb library
<http://fredrikj.net/arb/>`_; it may be useful to refer to its
documentation for more details.
You may have to run ``sage -i arb`` to use the arb library.
"""
#*****************************************************************************
# Copyright (C) 2014 Clemens Heuberger <clemens.heuberger@aau.at>
Expand Down Expand Up @@ -166,7 +165,7 @@ cdef class Matrix_complex_ball_dense(matrix_dense.Matrix_dense):
entries,
copy,
coerce):
"""
r"""
Initialize a dense matrix over the complex ball field.
INPUT:
Expand All @@ -187,7 +186,7 @@ cdef class Matrix_complex_ball_dense(matrix_dense.Matrix_dense):
EXAMPLES:
The __init__ function is called implicitly in each of the
The ``__init__`` function is called implicitly in each of the
examples below to actually fill in the values of the matrix.
We create a `2 \times 2` and a `1\times 4` matrix::
Expand Down Expand Up @@ -232,7 +231,7 @@ cdef class Matrix_complex_ball_dense(matrix_dense.Matrix_dense):
[1.000000000000000 0]
Matrices can have many rows or columns (in fact, on a 64-bit
machine they could have up to `2^64-1` rows or columns)::
machine they could have up to `2^{64}-1` rows or columns)::
sage: v = matrix(CBF, 1, 10^5, range(10^5))
sage: v.parent()
Expand Down

0 comments on commit b3a2a08

Please sign in to comment.