MathGroup Archive 2000

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

Search the Archive

Re: What makes things Listable?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg26312] Re: [mg26302] What makes things Listable?
  • From: BobHanlon at aol.com
  • Date: Sun, 10 Dec 2000 21:37:58 -0500 (EST)
  • Sender: owner-wri-mathgroup at wolfram.com

In a message dated 12/10/00 1:11:56 AM, cjohnson at shell.faradic.net writes:

>The solution I found for now is to create my own fuction
>
>cjValueList[{x_,y_,z_}]:=Value[x,y,z]
>

Use Sequence

In[1]:=
Value[Sequence @@ #] &  /@ {{a, b, c}, {d, e, f}}

Out[1]=
{Value[a, b, c], Value[d, e, f]}


Bob Hanlon


  • Prev by Date: Re: TeXSave undefined control sequences
  • Next by Date: BarChart Options?
  • Previous by thread: Re: What makes things Listable?
  • Next by thread: RE: What makes things Listable?