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
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