Skip to content

Commit

Permalink
minor doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Neiger committed Apr 3, 2020
1 parent 32bfc3b commit 0c9bca0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sage/matrix/matrix_polynomial_dense.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -2035,6 +2035,7 @@ cdef class Matrix_polynomial_dense(Matrix_generic_dense):
https://arxiv.org/pdf/1807.01272.pdf for details).
EXAMPLES::
sage: pR.<x> = GF(97)[]
sage: pmat = Matrix(pR, [[1],[x],[x**2]])
Expand All @@ -2049,7 +2050,7 @@ cdef class Matrix_polynomial_dense(Matrix_generic_dense):
sage: kerbas.is_minimal_kernel_basis(pmat)
False
Shifts and right kernel bases are supported (with `row_wise`); one can test whether the kernel basis is normalized in shifted-Popov form (with `normal_form`)::
Shifts and right kernel bases are supported (with ``row_wise``), and one can test whether the kernel basis is normalized in shifted-Popov form (with ``normal_form``)::
sage: kerbas = Matrix(pR, [[-x,-x**2],[1,0],[0,1]])
sage: kerbas.is_minimal_kernel_basis(pmat.transpose(),row_wise=False,normal_form=True,shifts=[0,1,2])
Expand Down

0 comments on commit 0c9bca0

Please sign in to comment.