MathGroup Archive 2005

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

Search the Archive

Re: BlankSequence

  • To: mathgroup at smc.vnet.net
  • Subject: [mg59199] Re: BlankSequence
  • From: Daniele Lupo <danwolf_no_spam_please_ at libero.it>
  • Date: Tue, 2 Aug 2005 00:42:23 -0400 (EDT)
  • References: <dchois$864$1@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

Hi.

I've resolved my problem in another way.

My data are stored in this way:

d= {{"data1"},{"data2"},...}

where dataN are lists of xy points {x1,y1},{x2,y2}...

So, I've created the function in this way:

MultipleListSmith[lista_List,options___]:=...

using lista_List, instead of {lista__}.

After this, I've recreated the transformation of the list, inside my
function, in this way:

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 :-(
In this way, I've created the sets that I need to be plotted. Now, I've
another problem with plotting (a little problem), but this is another
topic...

Anyway, thanks for your helps; I'll use them in my next problems, for sure.


Daniele


  • Prev by Date: Re: pairs and subsets challenge
  • Next by Date: Re: Interpolation of function
  • Previous by thread: Re: BlankSequence
  • Next by thread: Re: BlankSequence