Hi,<div><br></div><div>I'm not just doing zip, and what I showed is just an example. What I really hope to do is to do some calculation involving two or more elements from two or many lists, and of course the elements must from the same index in all the lists.</div>
<div><br></div><div>Cheers!<br><br><div class="gmail_quote">2011/11/18  <span dir="ltr"><<a href="mailto:lenartlad@volny.cz">lenartlad@volny.cz</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Hello.<br>
<br>
Use lists:zip/2:<br>
<br>
lists:zip([a,b,c], [1,2,3]) -> [{a,1},{b,2},{c,3}]<br>
<br>
<br>
HTH,<br>
<br>
Ladislav Lenart<br>
<br>
<br>
----- PŮVODNÍ ZPRÁVA -----<br>
Od: "Barco You" <<a href="mailto:barcojie@gmail.com">barcojie@gmail.com</a>><br>
Komu: "erlang-questions" <<a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a>><br>
Předmět: [erlang-questions] [erlang-question] How to comprehend two<br>
Datum: 18.11.2011 - 6:45:58<br>
<div class="HOEnZb"><div class="h5"><br>
> Dear Erlangers,<br>
><br>
><br>
> I hope to get a list from two lists like this:<br>
> [{a1,b1}, {a2,b2}, {a3,b3}]      <-     [a1, a2<br>
> a3],  [b1, b2, b3].<br>
><br>
> But if I use list comprehension, I got:<br>
> 10>  [{D1,D2} ||  D1 <- [a1,a2,a3], D2 <-<br>
> [b1,b2,b3]].<br>
> [{a1,b1},<br>
> {a1,b2},<br>
> {a1,b3},<br>
> {a2,b1},<br>
> {a2,b2},<br>
> {a2,b3},<br>
> {a3,b1},<br>
> {a3,b2},<br>
> {a3,b3}]<br>
><br>
><br>
> So, my questions is how to comprehend list in<br>
> synchronous way in order to<br>
> get what I want, rather than to compose the<br>
> elements from two lists in all<br>
> possible situations.<br>
><br>
><br>
> Thank you,<br>
> Barco<br>
><br>
<br>
<br>
</div></div><span class="HOEnZb"><font color="#888888">--<br>
Videokurzy MS Office zdarma! Portál VOLNÝ.cz přináší online výuková<br>
videa, která vás rychle, názorně a zábavnou formou naučí ovládat<br>
programy Excel, Word a PowerPoint. Seriál najdete na<br>
<a href="http://web.volny.cz/data/click.php?id=1293" target="_blank">http://web.volny.cz/data/click.php?id=1293</a><br>
<br>
<br>
</font></span></blockquote></div><br></div>