Clojure Matrix Representation

前端 未结 8 497
-上瘾入骨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:33

    I am presently using the list of lists approach in cryptovide because its very important for this application to keep things lazy. I am also considering switching to a more efficient approach as long as it kept at least the outward representation lazy.

提交回复
热议问题