On Thu, Aug 19, 2010 at 7:56 PM, Glen Rubin <rubing...@gmail.com> wrote:

>
> I want to multiply a list of n items by h lists of n items, so that
> for example if i have list 'a' and 'b'
>
> (def a (list 1 2 3))
> (def b (list '(4 5 6) '(7 8 9)))
>
> when multiplied I will get:
>
> ((4 10 18) (7 16 27))
>

Clojure makes this easy!

(map #(map * % [1 2 3]) [[4 5 6] [7 8 9]])

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to