Clojure Matrix Representation

前端 未结 8 499
-上瘾入骨i
-上瘾入骨i 2020-12-29 15:10

What is a good representation for matrices in Clojure? I\'m interested in dealing with dense matrices of floating point numbers. The \"list of lists\" representation springs

8条回答
  •  既然无缘
    2020-12-29 15:26

    Incanter supplies a wrapper around some of Parallel Colt, including what looks to be a pretty decent implementation of fast, parallelized dense matrices that interface with Clojure's seq-based libraries. I haven't used it, but it should be what you're looking for.

    Example.

提交回复
热议问题