Ask Your Question
17

Hidden features of Sage

asked 2013-04-29 01:09:50 +0200

this post is marked as community wiki

This post is a wiki. Anyone with karma >750 is welcome to improve it.

In the spirit of the StackOverflow threads of "hidden" language features, we can use this thread (community wiki) to aggregate useful but little-known features or tricks of Sage. Perhaps these can be collected and added to the documentation in the future.

edit retag flag offensive close merge delete

15 Answers

Sort by » oldest newest most voted
1

answered 2013-04-29 05:13:24 +0200

this post is marked as community wiki

This post is a wiki. Anyone with karma >750 is welcome to improve it.

Though is general for python, it is always worth reading: Code like a Pythonista

edit flag offensive delete link more
1

answered 2013-04-29 01:49:56 +0200

this post is marked as community wiki

This post is a wiki. Anyone with karma >750 is welcome to improve it.

Sébastien Labbé has a blog post with various Sage tricks.

edit flag offensive delete link more
1

answered 2013-04-29 01:48:17 +0200

this post is marked as community wiki

This post is a wiki. Anyone with karma >750 is welcome to improve it.

To preview LaTeX code from the command line, use the following:

show(LatexExpr(r'\frac{3}{4}x + 3'))

From the notebook,

html(r'$\frac{3}{4}x + 3$')

also works.

edit flag offensive delete link more

Comments

1

By the way, it would be useful (if it doesn't already exist) to have a function to render LaTeX code to an image just large enough to fit the expression, for export to environments that do not support LaTeX (an HTML website, for example).

Eviatar Bach gravatar imageEviatar Bach ( 2013-04-29 02:06:38 +0200 )edit
13

answered 2013-04-29 01:17:51 +0200

this post is marked as community wiki

This post is a wiki. Anyone with karma >750 is welcome to improve it.

In the command line, the underscore is a variable holding the result of the last output. This is very useful, e.g., for the following:

sage: integrate(cos(x), x)
sin(x)
sage: diff(_, x)
cos(x)
edit flag offensive delete link more
2

answered 2013-04-29 01:11:50 +0200

this post is marked as community wiki

This post is a wiki. Anyone with karma >750 is welcome to improve it.

Symbolic variables can be created from the command line as follows, faster than typing out var('x y z'):

,var x y z
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

3 followers

Stats

Asked: 2013-04-29 01:09:50 +0200

Seen: 3,572 times

Last updated: Oct 15 '20