gonum.org/v1/gonum@v0.15.1-0.20240517103525-f853624cb1bb/lapack/README.md (about) 1 Gonum LAPACK 2 ====== 3 [](https://pkg.go.dev/gonum.org/v1/gonum/lapack) 4 [](https://godocs.io/gonum.org/v1/gonum/lapack) 5 6 A collection of packages to provide LAPACK functionality for the Go programming 7 language (http://golang.org). This provides a partial implementation in native go 8 and a wrapper using cgo to a c-based implementation. 9 10 ## Installation 11 12 ``` 13 go get gonum.org/v1/gonum/lapack/... 14 ``` 15 16 ## Packages 17 18 ### lapack 19 20 Defines the LAPACK API based on http://www.netlib.org/lapack/lapacke.html 21 22 ### lapack/gonum 23 24 Go implementation of the LAPACK API (incomplete, implements the `float64` API). 25 26 ### lapack/lapack64 27 28 Wrappers for an implementation of the double (i.e., `float64`) precision real parts of 29 the LAPACK API.