[sage-support] Re: Request for Ploting

2009-10-13 Thread Jason Grout
Santanu Sarkar wrote: > From some data set I plot the attached eps file using Matlab. > How Can I do same thing using Sage only? Yes, definitely. You might look at examples of what Sage and the underlying plotting system, matplotlib, can do. A gallery of examples is here: http://matplotlib

[sage-support] Re: Request for Ploting

2009-10-13 Thread Robert Bradshaw
On Oct 13, 10:09 am, Santanu Sarkar wrote: > From some data set I plot the attached eps file using Matlab. > How Can I do same thing using Sage only? Sage uses the extension to determine the file type. sage: g = plot(x^3-x, (x,2, -2)) sage: g.save("fig.eps") sage: g.save("fig.pdf") sage: g.save