diff options
author | Bryan Newbold <bnewbold@charm.mit.edu> | 2008-02-25 21:12:14 -0500 |
---|---|---|
committer | Bryan Newbold <bnewbold@charm.mit.edu> | 2008-02-25 21:12:14 -0500 |
commit | a3234636a3393786fc8510f7bbca7449bbf63aeb (patch) | |
tree | 37e4a219baaa54df6060bac12acc346046863c28 /sagemath | |
parent | ca37b21dee235cac16ec98a649e878ffdb3dd25a (diff) | |
download | knowledge-a3234636a3393786fc8510f7bbca7449bbf63aeb.tar.gz knowledge-a3234636a3393786fc8510f7bbca7449bbf63aeb.zip |
brief sage usage
Diffstat (limited to 'sagemath')
-rw-r--r-- | sagemath | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sagemath b/sagemath new file mode 100644 index 0000000..f01883f --- /dev/null +++ b/sagemath @@ -0,0 +1,23 @@ +================== +SAGE Math Package +================== + +.. warning:: Under progress! + +This is a reference for the `sage <http://sagemath.org>`_ math package. + +Web Notebooks +----------------------------- +To start run ``notebook()`` from an interactive shell; passing a directory as an argument will store files there. Also try``sage_wiki()``! + +To get help on a ``cmd`` type ``cmd?`` in an cell and press the Escape key. + +Interactive Shell +----------------------------- +Instead of the usual python ``**`` you can use ``^`` like the rest of the world, at least from the notebook and shell; use the old operator in scripts? + +Prefacing with ``time`` gives processor time statistics; you can wrap a series of commands with ``t = cputime()`` and ``cputime(t)`` to get the sum of time statistics; ``walltime`` works similarly. + +The general trick for saving text representations of objects is to open a file dscriptor and write the ``str`` of the object to it. + +``save_session`` and ``load_session`` save all objects in the session to a ``.sobj`` file. |