# Created by Octave 3.2.4, Tue Nov 23 12:51:26 2010 EST <mockbuild@jetta.math.Princeton.EDU.private>
# name: cache
# type: cell
# rows: 3
# columns: 1
# name: <cell-element>
# type: string
# elements: 1
# length: 5
combs
# name: <cell-element>
# type: string
# elements: 1
# length: 582
 -- Function File: RVAL =  combs(SYM_SET,K)
     Function generates the nchoosek(N,K) combinations, and returns it.
     compute the combinations nchoosek(length(SYM_SET), K) nchoosek()
     is a much faster variant of this function.

                    combs([1,2,3],2)
                    ##returns value [1 2; 1 3; 2 3]

                    combs(['a','e','i','o','u'],2)
                    ##returns value  [['a', 'e']; ['a', 'i']; ['a','o']; ['a','u']; ['e', 'i'];
                    ##['e','o']; ['e','u']; ['i','o']; ['i','u']; ['o', 'u'];]

   See also: perms, nchoosek


# name: <cell-element>
# type: string
# elements: 1
# length: 66
Function generates the nchoosek(N,K) combinations, and returns it.

