1 | initial version |
The trick is to give a name to the Sage object actOnD( [[0,0], [0,1], [1,1], [1,0]], 3, 1)
(which is a plot):
sage: P = actOnD( [[0,0], [0,1], [1,1], [1,0]], 3, 1)
Then, you can have a look at its available methods:
sage: P.<tab>
You can see that there is a show option with tons of options:
sage: P.show?
For example, you can set :
sage: P.show(xmax=0.4, ymin=0.3)
2 | No.2 Revision |
The trick is to give a name to the Sage object actOnD( [[0,0], [0,1], [1,1], [1,0]], 3, 1)
(which is a plot):
sage: P = actOnD( [[0,0], [0,1], [1,1], [1,0]], 3, 1)
Then, you can have a look at its available methods:
sage: P.<tab>
You can see that there is a show option with tons of options:
sage: P.show?
For example, you can set :
sage: P.show(xmax=0.4, ymin=0.3)
ymin=0.3, aspect_ratio=1)