MathGroup Archive 2007

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

Search the Archive

Re: Plot without a graph

  • To: mathgroup at smc.vnet.net
  • Subject: [mg84374] Re: Plot without a graph
  • From: Bill Rowe <readnewsciv at sbcglobal.net>
  • Date: Thu, 20 Dec 2007 00:15:12 -0500 (EST)

On 12/19/07 at 4:11 AM, jackgold at umich.edu wrote:

>Suppose I want the table of values that Mathematica uses to plot the
>graph but I don't want the graph plotted.  I knew how to do it once,
>a long time ago, but I have forgotten the scheme.  Something like
>Display->Identity?

>Sorry to trouble you guys with this trivia but I could not find the
>method by searching the options for plot.  By the way, I do know how
>to get the table!

For Mathematica versions earlier than 6, you need to add the
directive DisplayFunction->Identity or do something like

Block[{$DisplayFunction=Identity},a=Plot[x,{x,0,1}]]

For version 6 and later simply terminate your plot statement
with a semicolon.
--
To reply via email subtract one hundred and four


  • Prev by Date: Re: Plot without a graph
  • Next by Date: Re: Plot without a graph
  • Previous by thread: Re: Plot without a graph
  • Next by thread: Re: Plot without a graph