在F#powerpack数学提供程序源代码:我看到了这个(在lapack_service_netlib.fs
)
member this.dgemm_((a:matrix),(b:matrix)) =
// allocate results
let c = Matrix.zero (m) (n)
// transpose
let c = Matrix.transpose c
...
// fixups
let c = Matrix.transpose c
// result tuple
c
Run Code Online (Sandbox Code Playgroud)
为什么这个有用?确实c
有重复的定义?