Re: Plot without a graph
- To: mathgroup at smc.vnet.net
- Subject: [mg84345] Re: Plot without a graph
- From: Albert Retey <awnl at arcor.net>
- Date: Thu, 20 Dec 2007 00:00:05 -0500 (EST)
- References: <fkangm$dev$1@smc.vnet.net>
jackgold at umich.edu wrote: > Hello, > > 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! > if $VersionNumber < 6: Block[{$DisplayFunction=Identity}, <plot commands> ] else: <plot commands>; (that is: just append a semicolon to suppress output for version 6) hth, albert