BlankSequence
- To: mathgroup at smc.vnet.net
- Subject: [mg59176] BlankSequence
- From: Daniele Lupo <danwolf_no_spam_please_ at libero.it>
- Date: Sun, 31 Jul 2005 01:30:47 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
Hi to everyone. I'm woking with a function, and I've a problem with the blank sequence. My function is defined in this way: ListSmith[lista__, options___]:= Module[{listaUV}, listaUV = {RXToU[#[[1]], #[[2]]], RXToV[#[[1]], #[[2]]]} & /@ lista; MultipleListPlot[listaUV, options] ] Now, when I put a single list as augment of the function, in this way ListSmith[list1, PlotJoined->True] All works OK. When I define more lists, instead, in this way, for example: ListSmith[list1, list2, PlotJoined->True] both lists are drawn, but only the first is elaborated by the first command of the function, while the second list (and others, when they are present), are not modified in listaUV. I'd like to modify every list that appears like augment in my function, instead that only the first. Anyone has some idea about it? Thanks for answers Daniele