MathGroup Archive 2005

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Apply on MultipleListPlot using pure functions

  • To: mathgroup at smc.vnet.net
  • Subject: [mg54318] Re: Apply on MultipleListPlot using pure functions
  • From: Bill Rowe <readnewsciv at earthlink.net>
  • Date: Thu, 17 Feb 2005 10:30:39 -0500 (EST)
  • Sender: owner-wri-mathgroup at wolfram.com

On 2/16/05 at 2:36 PM, pdickof at scf.sk.ca wrote:

>I seem to be missing soomething with using Apply on pure functions.

>The following lines work properly:
>Needs["Graphics`MultipleListPlot`"] 
>MultipleListPlot[{1, 2, 3}, {4,5, 6}, {2, 3, 4}]; 
>Apply[MultipleListPlot, {{1, 2, 3}, {4, 5, 6},{2, 3, 4}}];

>but this does not. Why not? 
>Apply[MultipleListPlot[#, Frame ->True]&,{{1, 2, 3},{4, 5, 6},{2, 3, 4}}];

I am not entirely sure why it doesn't work as expected, but

MultipleListPlot[Sequence@@#,Frame->True]&@{{1,2,3},{4,5,6},{2,3,4}}; 

does work
--
To reply via email subtract one hundred and four


  • Prev by Date: Re: Re: Domain and range
  • Next by Date: Re: Apply on MultipleListPlot using pure functions
  • Previous by thread: Apply on MultipleListPlot using pure functions
  • Next by thread: Re: Apply on MultipleListPlot using pure functions