@@ -264,7 +264,7 @@ cdef class Matrix_polynomial_dense(Matrix_generic_dense):
264
264
265
265
def is_constant (self ):
266
266
r """
267
- Return ``True`` if and only if this polynomial matrix is constant,
267
+ Return whether this polynomial matrix is constant,
268
268
that is, all its entries are constant.
269
269
270
270
OUTPUT: a boolean.
@@ -3261,7 +3261,7 @@ cdef class Matrix_polynomial_dense(Matrix_generic_dense):
3261
3261
row_wise = True ,
3262
3262
normal_form = False ):
3263
3263
r """
3264
- Return ``True`` if and only if this matrix is an approximant basis in
3264
+ Return whether this matrix is an approximant basis in
3265
3265
``shifts``-ordered weak Popov form for the polynomial matrix ``pmat``
3266
3266
at order ``order``.
3267
3267
@@ -3784,7 +3784,7 @@ cdef class Matrix_polynomial_dense(Matrix_generic_dense):
3784
3784
row_wise = True ,
3785
3785
normal_form = False ):
3786
3786
r """
3787
- Return ``True`` if and only if this matrix is a left kernel basis in
3787
+ Return whether this matrix is a left kernel basis in
3788
3788
``shifts``-ordered weak Popov form for the polynomial matrix ``pmat``.
3789
3789
3790
3790
If ``normal_form`` is ``True``, then the kernel basis must furthermore
@@ -4437,10 +4437,9 @@ cdef class Matrix_polynomial_dense(Matrix_generic_dense):
4437
4437
4438
4438
def _is_basis_completion (self , mat , row_wise = True ):
4439
4439
r """
4440
- Return true if and only if this matrix is a basis completion for
4441
- ``mat``. For the definition of basis completion, including its
4442
- orientation row-wise or column-wise, see the documentation of
4443
- :meth:`basis_completion`.
4440
+ Return whether this matrix is a basis completion for ``mat``. For the
4441
+ definition of basis completion, including its orientation row-wise or
4442
+ column-wise, see the documentation of :meth:`basis_completion`.
4444
4443
4445
4444
INPUT:
4446
4445
0 commit comments