Prev: import data from excel 2007 with more than 65536 rows to matlab
Next: Adding text boxes to browser window
From: Olaf on 27 Apr 2010 01:39 Hi, how can I create all permutation of the 3 chars in a string like UVW? I guess, this are 9 tuples. Maybe the permutation of 123 could work for me also. Thanks, Olaf
From: Bruno Luong on 27 Apr 2010 02:02 It is confusing whereas you want permutation (6) or combination (9). But here is one way. perms('UVW') Bruno
From: Olaf on 27 Apr 2010 03:38 > It is confusing whereas you want permutation (6) or combination (9). But > here is one way. > > perms('UVW') Oops, combination is what I want. Thanks for clearification Olaf
From: us on 27 Apr 2010 03:47
Olaf <noreplay(a)inder.net> wrote in message <hr649l$d11$2(a)fuerst.cs.uni-magdeburg.de>... > > It is confusing whereas you want permutation (6) or combination (9). But > > here is one way. > > > > perms('UVW') > > Oops, combination is what I want. > > Thanks for clearification > Olaf a hint: help nchoosek; us |