Re: Save a graphic
- To: mathgroup at smc.vnet.net
- Subject: [mg51382] Re: [mg51325] Save a graphic
- From: Tomas Garza <tgarza01 at prodigy.net.mx>
- Date: Fri, 15 Oct 2004 02:47:53 -0400 (EDT)
- References: <200410141036.GAA14923@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Use Put (>>) directly on your plot. Then you may recover it later with Get
(<<) and plot it again with Show. For example,
In[1]:=
g = Plot[Sin[x], {x, -Pi, Pi}];
In[2]:=
g >> "savedPlot";
Later on
In[3]:=
g = << "savedPlot";
In[4]:=
Show[g];
Tomas Garza
Mexico City
----- Original Message -----
From: "Steve Gray" <stevebg at adelphia.net>
To: mathgroup at smc.vnet.net
Subject: [mg51382] [mg51325] Save a graphic
> I know how to save a plot to disk as a GIF (bitmap), but I want to save it
in Mathematica's native
> format so I can read it in later and rescale it, etc. I don't see how to
do this. Can anyone help? I
> also don't see any alternatives to GIF, but there must be some.
> Thank you.
>
> Steve Gray
>
>
- References:
- Save a graphic
- From: Steve Gray <stevebg@adelphia.net>
- Save a graphic