Ask Your Question

entity's profile - activity

2013-05-07 15:40:28 +0200 received badge  Great Question (source)
2012-11-17 03:25:33 +0200 received badge  Famous Question (source)
2012-10-03 17:15:49 +0200 received badge  Good Question (source)
2012-09-29 12:39:12 +0200 received badge  Nice Question (source)
2011-11-30 12:09:15 +0200 received badge  Notable Question (source)
2011-06-05 02:14:53 +0200 received badge  Popular Question (source)
2010-10-14 23:11:12 +0200 received badge  Student (source)
2010-10-14 23:11:11 +0200 received badge  Scholar (source)
2010-08-22 06:50:06 +0200 commented answer How to save a plot from notebook?

Thats easy and works, thank you!

2010-08-22 06:49:03 +0200 marked best answer How to save a plot from notebook?

If p is any plot object, then you can use the save method to save it to a file. The type of file written will be based on the extension of filename given. For example,

p = plot(x^2, -5, 5)
p.save('filename.svg')

will save an SVG. Since the directory in which to save the image was not specified, it will do it in a special directory reserved for the input cell. The notebook will automatically detect that this file is present and then either display it or display a link from which you can download it. You can also use .eps or .ps for PostScript files which are also vector graphics.

2010-08-21 18:56:18 +0200 asked a question How to save a plot from notebook?

Is it possible to export a plot, preferable in a vector format from a notebook?