RE: sort list
- To: mathgroup at smc.vnet.net
- Subject: [mg47210] RE: [mg47208] sort list
- From: "Florian Jaccard" <florian.jaccard at eiaj.ch>
- Date: Wed, 31 Mar 2004 02:57:19 -0500 (EST)
- Reply-to: <florian.jaccard at eiaj.ch>
- Sender: owner-wri-mathgroup at wolfram.com
Bonjour Vincent! Like this : In[26]:= Sort[{{something1, 3}, {something2, 1}, {something3, 7}, {something4, 2}}, #1[[2]] < #2[[2]] & ] Out[26]= {{something2, 1}, {something4, 2}, {something1, 3}, {something3, 7}} Meilleures salutations Florian Jaccard -----Message d'origine----- De : Guibout [mailto:guibout at ifrance.com] Envoyé : mar., 30. mars 2004 11:02 À : mathgroup at smc.vnet.net Objet : [mg47208] sort list Hi, I have a list of the form {{something1,x1},{something2,x2},{something3,x3}} where x1,x2, x3 are numbers. I want to sort this list with respect to xi. In other word if x2<x3<x1 I want Mathematica to produce: {{something2,x2},{something3,x3},{something1,x1}} Thanks for your help Vincent