Re: Question about Mathematica
- To: mathgroup at smc.vnet.net
- Subject: [mg106569] Re: [mg106544] Question about Mathematica
- From: Francisco Javier Chávez Contreras <francisco.chavez at usach.cl>
- Date: Sat, 16 Jan 2010 06:14:11 -0500 (EST)
- References: <201001151200.HAA07995@smc.vnet.net>
Hello Dominic, im use a "For" for solving your trouble: --------------------------------------------------------------------------- --------------------------------------------- tablein = {{{1, 2}, {3, -1}, {2, -4}}, {{1, 2}, {4, -5}, {6, -8}}, {{2, -1}, {-2, -3}, {-4, 6}}}; mintable = {}; For[i = 1, i <= Length[tablein], i++, mini = Min[Drop[tablein[[i]], {}, {1}]]; posi = Position[tablein[[i]], mini][[1, 1]]; mintable = Append[mintable, Extract[tablein[[i]], posi]]; ]; mintable ------------------------------------------------------------------------------------------------------------------------- I hope this code will serve you, greetings. Regards, Francisco Ch=E1vez Contreras Santiago, Chile 2010/1/15 Dominic <miliotodc at rtconline.com> > Hi. Can someone help me with the following question: > > I have a table of a table of number pairs: > > {{{1,2),(3,-1),{2,-4)},{{1,2},{4,-5},{6,-8}},{{2,-1},{-2,-3},{-4,6}}} > > How may I find the minimum second element in each sub-table? For > example, the first sub-table is: > > {{1,2},{3,-1},{2,-4}} > > I would like to then extract the {2,-4} element from this item. Then > the {6,-8} from the second sub-table, then the {-2,-3} element from the > last. > > Thank you, > Dominic > > >
- References:
- Question about Mathematica
- From: "Dominic" <miliotodc@rtconline.com>
- Question about Mathematica