Hi,

On 20 Aug., 01:56, 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))

And just to train myself to use for more often:

(for [b [[456] [789]]]
  (map * b [1 2 3]))

Sincerely
Meikel

-- 
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