Supressing the output of Plot
- To: mathgroup at smc.vnet.net
- Subject: [mg30596] Supressing the output of Plot
- From: fblack2 at mail.com (Frank Black)
- Date: Thu, 30 Aug 2001 03:51:48 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
I'm making a Table full of Plots using Table[Plot[...]], and would like to suppress the display of the resulting plots until later, when I will use GraphicsArray. Setting DisplayFunction -> Identity in the Plot command works until I include a legend with PlotLegend, then every single plot will be displayed. Example of no plot output: Plot[{Sin[t], Cos[t]}, {t, 0, 5}, DisplayFunction -> Identity, PlotRange -> {{0, 5}, {-2, 2}}]; Example of undesired plot outputs: Plot[{Sin[t], Cos[t]}, {t, 0, 5}, DisplayFunction -> Identity, PlotLegend -> {"Uno", "Dos"}, LegendPosition -> {.3, -.6}, PlotRange -> {{0, 5}, {-2, 2}}]; Any suggestions? Thanks, Frank