我已:
(def data [[1 3 4 7 9] [7 6 3 2 7] [1 9 8 6 2]])
我想要平均这些(需要满足以下条件):
[3 6 5 5 6]
和MATLAB一样:
mean([1 3 4 7 9; 7 6 3 2 7; 1 9 8 6 2])
With Incan 我可以做到:
(map #(/ % (count m)) (apply plus data))
If data is rather large (and I have lots of them) is there a better way to do this?
Does it help to calculate the (count m)
beforehand?
Does it help to defn
the #(/ % (count m))
beforehand?