1

我是 Erlang 的新手,所以请原谅我的幼稚。

我正在尝试重写我用其他语言编写的函数。其中之一是 Jaccard 位索引。

在 python haskell 和 clojure 中,它的工作方式如下:

xs = [1,1,0,0,1,1,0,0,1,1,0,0]
ys = [1,0,1,0,1,0,1,0,1,0,1,0]

# python 3.X
def jaccard_bit_index(A,B):
    i = sum(map(operator.mul ,A,B)) 
    return  i / (sum(A) + sum(B) - i)

-- haskell
jaccrd_bit_index a b =
    count / ((sum a) + (sum b) - count)
    where
      count = sum $ zipWith (*) a b

%% clojure
(defn jaccard-bit-index [a b]
  (let [binarycount (apply + (map * a b))]
    (/ binarycount
       (- (+ (apply + a) (apply + b))
          binarycount))))

我认为我的问题是我只知道 Erlang 的

map(Fun, List1) -> List2

并且每次我在使用类似于以下内容之前完成它:

map(Fun, List1, List2) -> List3

4

1 回答 1

5

我敢打赌您正在搜索的是模块中的zipwith功能list(http://www.erlang.org/doc/man/lists.html)。它类似于zipWith您使用的 haskell 函数,并且具有以下类型:

zipwith(Combine, List1, List2) -> List3

你可能会使用类似的东西:

Count = lists:sum(lists:zipwith(fun(X, Y) -> X*Y end, A, B))
于 2012-07-28T16:32:21.300 回答