MathGroup Archive 2003

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

Search the Archive

Re: Conversion Function -> List

  • To: mathgroup at smc.vnet.net
  • Subject: [mg44736] Re: Conversion Function -> List
  • From: Bill Rowe <readnewscix at mail.earthlink.net>
  • Date: Mon, 24 Nov 2003 00:05:23 -0500 (EST)
  • Sender: owner-wri-mathgroup at wolfram.com

On 11/22/03 at 2:17 AM, zelenkov at mail333.com (Vadim Zelenkov) wrote:

> Given a function
>     x y + Sin[x] Cos[y]
 
> I need to convert it into the list
>     {{x,y},{Sin[x],Cos[x]}}

In[1]:=
List@@@List@@(x y+Sin[x] Cos[y])

Out[1]=
{{x,y},{Cos[y],Sin[x]}}
--
To reply via email subtract one hundred and nine


  • Prev by Date: Log Equation
  • Next by Date: Re: Defining Operators
  • Previous by thread: Re: Conversion Function -> List
  • Next by thread: Re: Conversion Function -> List