代码之家  ›  专栏  ›  技术社区  ›  Victor

hmatrix的ghc问题

  •  5
  • Victor  · 技术社区  · 11 年前

    我正在尝试使用 hmatrix hmatrix-gsl-stats 。但我得到了非常奇怪的结果。有人能重现我所看到的吗?

    import Numeric.LinearAlgebra
    import Numeric.GSL.Fitting.Linear
    
    main :: IO ()
    main = do
      let y = fromList [1,2,3,4,5]
      let x = trans $ fromLists [[1,2,3,4,5], [1,1,1,1,1]]
      let x3 = fromLists [[1,1], [2,1], [3,1], [4,1], [5,1]]
      print $ x == x3
      print $ multifit x y
      print $ multifit x3 y
    

    所以我只是编译并运行它,我得到:

    True
    (fromList [0.6121951219512196,0.39756097560975645],(2><2)
     [   0.5100317271465397, -0.46568114217727535
     , -0.46568114217727535,     0.82048582193139 ],27.27560975609756)
    (fromList [1.0000000000000002,-8.881784197001252e-16],(2><2)
     [ 2.1364982849735737e-32, -6.40949485492072e-32
     ,  -6.40949485492072e-32, 2.350148113470931e-31 ],6.409494854920721e-31)
    

    我是不是错过了一些显而易见的东西?

    1 回复  |  直到 11 年前
        1
  •  4
  •   Anthony    11 年前

    我认为这是一个内部处理矩阵换位的问题。当你打电话时 trans ,它只是元数据中的一个翻转部分。。。很明显 当矩阵通过FFI时被检查。

    如果你尝试这个, multifit (reshape (cols x) $ flatten x) y ,在倒数第二行,你可以强制换位。