Re: how to make a list of rules with 2 other lists composed by
- To: mathgroup at smc.vnet.net
- Subject: [mg127120] Re: how to make a list of rules with 2 other lists composed by
- From: nanobio9 <kuokan.liang at gmail.com>
- Date: Sun, 1 Jul 2012 02:09:13 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <jsmgat$1l5$1@smc.vnet.net>
Joug Raw=E6=96=BC 2012=E5=B9=B46=E6=9C=8830=E6=97=A5=E6=98=9F=E6=9C=9F=E5= =85=ADUTC+8=E4=B8=8B=E5=8D=885=E6=99=8219=E5=88=8625=E7=A7=92=E5=AF=AB=E9= =81=93=EF=BC=9A > Dear all, > > I want to generate a list composed by rules. That is, > > I have two list > First one: > list1={1, 2, 3} > The elements of this list are Integers. > Map[Head, list1] = {Integer, Integer, Integer} > > Second one: > list2= {"file1", "file2", "file3"} > The elements of this list are Strings. > Map[Head, list2] = {String, String, String} > > > What I want is to have a new list like > list3= {1 -> "file1", 2 -> "file2", 3 -> "file3"} > Map[Head, list3] = {Rule, Rule, Rule} > > Yes, of cause I can generate a list of rule manually. But what I have are > two big list of many elements and they are the output of other codes. So, > in real life this would be a part of big program. That is why I want to > generate the rule list automatically from list1 and list2. How could I do > this in a simple way? Thank you for your help. > > Best regards, > Joug Hi, the example you posted was so simple that the solution should be as simple as list3 = Inner[ Rule, list1, list2, List ] But if you are actually talking about more complicated cases, please tell us more about the difficulties you had. Best.