github.com/jingcheng-WU/gonum@v0.9.1-0.20210323123734-f1a2a11a8f7b/lapack/README.md (about)

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