2011-02-17 01:47:57 +01:00
|
|
|
LAPACKE is a standard C language APIs for LAPACK, which introduces
|
|
|
|
the following features[1]:
|
2016-05-19 12:44:11 +02:00
|
|
|
- row-major and column-major matrix layout controlled by the first function
|
2011-02-17 01:47:57 +01:00
|
|
|
parameter;
|
2016-05-19 12:44:11 +02:00
|
|
|
- an implementation with working arrays (middle-level interface) as well as
|
2011-02-17 01:47:57 +01:00
|
|
|
without working arrays (high-level interface);
|
|
|
|
- input scalars passed by value;
|
|
|
|
- error code as a return value instead of the INFO parameter.
|
|
|
|
|
|
|
|
[1] Intel Corporation. "C Interface to LAPACK" README. 2010.
|
|
|
|
|
|
|
|
WWW: http://www.netlib.org/lapack/
|