Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Clojure: How do I get a list of combinations of 'coordinates'?

Tags:

clojure

Say i have a function that takes to coordinates, x and y.

For x I have a sequence of values say [1 2 3] and for y I have another sequence of values say [4 5 6].

How would I get a list with all the combinations of these?

So the desired result would be something like:

(myfn [1 2 3] [4 5 6]) => [[1 4] [1 5] [1 6] [2 4] [2 5] [2 6] [3 4] [3 5] [3 6]]

Is there an existing function for something like this?

like image 317
Jeroen Dirks Avatar asked Oct 29 '09 21:10

Jeroen Dirks


1 Answers

data> (for [x [1 2 3] y [4 5 6]] (vector x y))
([1 4] [1 5] [1 6] [2 4] [2 5] [2 6] [3 4] [3 5] [3 6])

...or...

user> (use 'clojure.contrib.combinatorics)
nil
user> (cartesian-product [1 2 3] [4 5 6])
((1 4) (1 5) (1 6) (2 4) (2 5) (2 6) (3 4) (3 5) (3 6))
like image 132
Brian Carper Avatar answered Sep 30 '22 13:09

Brian Carper