Re: BlankSequence
- To: mathgroup at smc.vnet.net
- Subject: [mg59235] Re: BlankSequence
- From: albert <awnl at arcor.de>
- Date: Wed, 3 Aug 2005 01:19:41 -0400 (EDT)
- References: <dchois$864$1@smc.vnet.net> <dcmtvi$ghb$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
> listaUV = lista /.{x_Real,y_Real}->{RXToU[x, y], RXToV[x, y]}
>
> instead of the creation of a pure function that is mapped into this list:
> my problem was the changing of points from one type of coordinates
> (Cartesian) to another (Smith chart), so in this way I apply the
> transformation to every pair of numbers (my data are experimental, so I've
> only numbers). Anyway, your suggestion did not worked with my problem,
> because my pure function does not map properly into my list of data :-(
With your furst approuch you most probably just would have needed to map one
level deeper:
Map[{...} &,{lista},{2}];
good luck,
albert