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