I have a vector v

(def v [1 2 5 8 4 3 8 9 3])

I want to apply function myfn

(defn myfn [x] (+ 1 x))

to selected items that I have their indexes idx

(def idx [3 5])

I've seen How do I modify a portion of a vector in Clojure? and it is not exactly what I need.

Like what you do in MATLAB

v = [1 2 5 8 9 3];
idx = [3 5];
v(idx) = myfn(v(idx));
link|improve this question

sorry, @yoda, now it is. – Ali Nov 20 '11 at 2:31
feedback

4 Answers

up vote 9 down vote accepted

Vectors in clojure are associative, so you can do something like this: (reduce #(update-in %1 [%2] myfn) v idx)

link|improve this answer
feedback

Updated because I misinterpreted the question.

Here's another solution:

(apply assoc v (mapcat #(vector % (myfn (v %))) idx))

that is, build up an argument list of index/new-value pairs to assoc. I think mange's solutions is probably better though.


Original, incorrect solution

Don't forget that vector v is itself a function of its indices. So:

(map myfn (map v idx))

or:

(->> idx (map v) (map myfn))

or:

(map (comp myfn v) idx)

I'm sure there's also a very clever answer involving juxt :)

link|improve this answer
1  
This will return the modified indexes as a new seq rather than updating them within the original vector. – mange Nov 20 '11 at 5:40
Oops. The question doesn't specify the output, so it was easy to misinterpret. – Dave Ray Nov 20 '11 at 14:15
feedback

You mention "a [large] vector", so do you care about performance? You may want to find out about transients:

(persistent!
  (reduce (fn [v i] (assoc! v i (myfn (get v i))))
          (transient v)
          idx))

Or, if you prefer looping style, this does the same thing:

(loop [v (transient v), [i & is :as idx] idx]
  (if (empty? idx)
    (persistent! v)
    (recur (assoc! v i (myfn (get v i))) is)))
link|improve this answer
This is certainly superior when updating many indexes. What is the cost of transient/persistent!? I assume that for a small number of indexes this would have a slightly more overhead. – mange Nov 20 '11 at 11:38
They're advertised as O(1), and they do seem to be pretty fast. The cost is more in the restrictions on the code: you have to use a different set of primitives and can't allow other threads to access the data between transient and persistent!. But transients are a good match for a small piece of code like this that does multiple edits of the data structure in a loop. – Jouni K. Seppänen Nov 20 '11 at 19:54
Yeah, O(1) just means constant overhead, so negligible for large numbers of mutations, but maybe significant for smaller numbers. I've never really used transients, but they seem super handy like this. – mange Nov 20 '11 at 22:04
feedback
(let [sidx (set idx)]
  (vec                        ;(sidx i)
    (map-indexed (fn [i x] (if (contains? sidx i) (myfn x) x)) v)))
link|improve this answer
very very slow. – BLUEPIXY Nov 21 '11 at 9:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.