Hi,
When I look up matrix.add_multiple_of_row in Sage reference, I get:
add_multiple_of_column(i, j, s, start_row=0)
Add s times column j to column i.
EXAMPLES: ...
If I do ?A.add_multiple_of_row in SageMath (in Jupyter, with the variable A = matrix(...)), I get
Docstring:
Add s times row j to row i.
EXAMPLES: ...
Note the critical line add_multiple_of_column(i, j, s, start_row=0) missing. Is it possible to see the function arguments and usage when using the ? form of help?
Thanks, Manoj