Getting Help
Description
Sage has extensive built-in documentation, accessible by typing the name of a function or a constant (for example), followed by a question mark:
Sage Cell
Code
tan?
Options
Accessing Method Documentation
For methods, which cannot be called by themself, we can find their documentation by adding a question mark after appending the method to a relevant object. Here, we'll access the documentation fro the rref() method, which is used on matrices:
Code
A = matrix(QQ, [[1, 2], [3, 4]])
A.rref?
Tags
Primary Tags—Sage: Help
Secondary Tags—
Related Cells
None
Attribute
Permalink:
Author: Sage Tutorial v7.6
Date: 07 Jul 2017 14:49
Submitted by: Tom Judson