Re: Break a List into Individual Elements?
- To: mathgroup at smc.vnet.net
 - Subject: [mg5239] Re: Break a List into Individual Elements?
 - From: dreece at atl.mindspring.com (Daryl Reece)
 - Date: Fri, 15 Nov 1996 03:33:53 -0500
 - Organization: MindSpring Enterprises, Inc.
 - Sender: owner-wri-mathgroup at wolfram.com
 
Try SetOptions[Plot, Sequence @@ myPlotOptions]
Sequence is an undocumented head that transforms a List into
individual elements.
siegman at ee.stanford.edu (AES) wrote:
>I want to write
>   myPlotOptions = {Option1->value1,Option2->,value2,...}
>   
>   SetOptions[Plot, myPlotOptions]
>   SetOptions[LogPlot, myPlot Options]
>but SetOptions[] doesn't want to accept a list as the second 
>argument.  How can I accomplish this?