Re: Plot
- To: mathgroup at smc.vnet.net
- Subject: [mg80504] Re: Plot
- From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
- Date: Thu, 23 Aug 2007 06:25:43 -0400 (EDT)
- Organization: The Open University, Milton Keynes, UK
- References: <faj53o$8u9$1@smc.vnet.net>
ET wrote:
<snip>
> Also, as I am doing many similar plots how can I change the size of all the
> charts (non-manually).
One way of doing that is illustrated below.
Plot[Sin[x], {x, -6 Pi, 6 Pi}] (* Use default size *)
Options[Plot] (* List all available options w/ default setting *)
SetOptions[Plot, ImageSize -> 500] (* Set default image size to 500 *)
Plot[Sin[x], {x, -6 Pi, 6 Pi}] (* Use 500 from now onwards *)
--
Jean-Marc