gonum.org/v1/gonum@v0.14.0/lapack/lapack64/doc.go (about)

     1  // Copyright ©2017 The Gonum Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  // Package lapack64 provides a set of convenient wrapper functions for LAPACK
     6  // calls, as specified in the netlib standard (www.netlib.org).
     7  //
     8  // The native Go routines are used by default, and the Use function can be used
     9  // to set an alternative implementation.
    10  //
    11  // If the type of matrix (General, Symmetric, etc.) is known and fixed, it is
    12  // used in the wrapper signature. In many cases, however, the type of the matrix
    13  // changes during the call to the routine, for example the matrix is symmetric on
    14  // entry and is triangular on exit. In these cases the correct types should be checked
    15  // in the documentation.
    16  //
    17  // The full set of Lapack functions is very large, and it is not clear that a
    18  // full implementation is desirable, let alone feasible. Please open up an issue
    19  // if there is a specific function you need and/or are willing to implement.
    20  package lapack64 // import "gonum.org/v1/gonum/lapack/lapack64"