options in Plot
- To: mathgroup at smc.vnet.net
- Subject: [mg129162] options in Plot
- From: Nigel King <nigel.king at cambiumnetworks.com>
- Date: Wed, 19 Dec 2012 04:55:53 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- Delivered-to: l-mathgroup@wolfram.com
- Delivered-to: mathgroup-newout@smc.vnet.net
- Delivered-to: mathgroup-newsend@smc.vnet.net
Hi MathGroup,
Most Graphic functions allow applying a collection of options as in
opts = {Frame -> True, GridLines -> {{1}, {1}}}
One can then use the opts in the following plots
ListPlot[{{1, 1}}, opts]
Plot[x, {x, 0, 1}, opts]
The ListPlot works as expected, the Plot does not. It results with
Plot[x, {x, 0, 1}, opts]
I believe that this is a change from M8 to M9.
Is this a bug or intended functionality?
Thanks
Nigel King
- Follow-Ups:
- Re: options in Plot
- From: Bob Hanlon <hanlonr357@gmail.com>
- Re: options in Plot