MathGroup Archive 2001

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: how to list all arrange of n! to a table

  • To: mathgroup at smc.vnet.net
  • Subject: [mg27734] Re: [mg27707] how to list all arrange of n! to a table
  • From: Tomas Garza <tgarza01 at prodigy.net.mx>
  • Date: Tue, 13 Mar 2001 03:52:52 -0500 (EST)
  • References: <200103120709.CAA23218@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

Mathematica 4.0:

In[1]:=
Export["example",
  StringJoin /@ (ToString /@ # & /@ Permutations[Range[3]]), "List"]

will put your list of permutations in file "example" which you can read into
Excel or Access.

Tomas Garza
Mexico City

----- Original Message -----
From: "zeno69" <zeno69 at pchome.com.tw>
To: mathgroup at smc.vnet.net
Subject: [mg27734] [mg27707] how to list all arrange of n! to a table


> if n = 3 then list
> 123
> 321
> 132
> 231
> 213
> 312
> to access or excel
>
>
>
>



  • Prev by Date: Re: how to list all arrange of n! to a table
  • Next by Date: Direct product of two matrices
  • Previous by thread: how to list all arrange of n! to a table
  • Next by thread: Re: how to list all arrange of n! to a table