MathGroup Archive 2004

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Save graphics

  • To: mathgroup at smc.vnet.net
  • Subject: [mg51347] Re: Save graphics
  • From: "Jens-Peer Kuska" <kuska at informatik.uni-leipzig.de>
  • Date: Fri, 15 Oct 2004 02:45:40 -0400 (EDT)
  • Organization: Uni Leipzig
  • References: <ckln3c$f5f$1@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

Hi,

make a graphics:

gr = Plot[Sin[x], {x, 0, Pi}];

save it

Put[gr, "tmp.m"]

read it to gr1

gr1 = Get["tmp.m"];
Show[gr1]



Regards

  Jens

"Steve Gray" <stevebg at adelphia.net> schrieb im Newsbeitrag 
news:ckln3c$f5f$1 at smc.vnet.net...
> In my previous post I forgot to say that I want to save plots in the 
> running program, not
> manually. I am making so many plots that (apparently) memory fills up and 
> the program stops by
> itself.
>
> Steve Gray
> 



  • Prev by Date: Re: Scale Values on Plot[]
  • Next by Date: Re: Part of a matrix or array
  • Previous by thread: Save graphics
  • Next by thread: Re: Save graphics