Finite Field Linear Algebra Library for Haskell


Your best bet would be a binding to FFLAS/FFPACK, that represents the data in native Haskell types. However, I can't see that we have such a binding yet.

Related libraries that would be a good starting point:

  • http://hackage.haskell.org/package/vect
  • http://hackage.haskell.org/package/hmatrix
  • http://hackage.haskell.org/package/jalla
  • http://hackage.haskell.org/package/blas
  • For getting started with array structures the vector tutorial isn't bad:

  • http://www.haskell.org/haskellwiki/Numeric_Haskell:_A_Vector_Tutorial
  • So, in summary, I think you might need to quickly whip up bindings to fflas, then expose them via hmatrix or vector.

    链接地址: http://www.djcxy.com/p/62974.html

    上一篇: Python与C ++的比较,用于稀疏线性代数的应用程序

    下一篇: Haskell的有限域线性代数库