MathGroup Archive 1993

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

Search the Archive

Re: Question about Display

  • To: mathgroup at yoda.physics.unc.edu
  • Subject: Re: Question about Display
  • From: Brian Gray <gray at sabine.psu.edu>
  • Date: Wed, 21 Apr 93 8:53:52 EDT

The easiest way to save a graphics is as follows:

In[1]:= plot1 = Plot[Sin[x],{x,0,Pi}]

Out[1]= -Graphics-

In[2]:= Save["file",plot1]

In[3]:= Clear[plot1]

In[4]:= Get["file"]

Out[2]= {Courier, 10.}

In[3]:= Show[plot1]

Out[3]= -Graphics-

You are, in a sense, saving the variable of the plot. This will work for 
multiple plot variables, and will contain all of the plot information.

-Brian Gray
--
---Better Sounding Creases Through Technology---
424 Waupelani Dr. #H-23
State College, PA  16801
(814)861-5308







  • Prev by Date: Plotting functions with different domain
  • Next by Date: Replacement?
  • Previous by thread: Question about Display
  • Next by thread: Re: Question about Display