@stdlib/lapack-base
v0.1.0
Published
Base (i.e., lower-level) LAPACK routines.
Downloads
12
Readme
LAPACK
Base (i.e., lower-level) linear algebra package (LAPACK) routines.
Installation
npm install @stdlib/lapack-base
Usage
var lapack = require( '@stdlib/lapack-base' );
lapack
Namespace for "base" (i.e., lower-level) linear algebra package (LAPACK) routines.
var o = lapack;
// returns {...}
The namespace contains the following:
dlacpy( order, uplo, M, N, A, LDA, B, LDB )
: copy all or part of a matrixA
to another matrixB
.dlaswp( N, A, LDA, k1, k2, IPIV, incx )
: perform a series of row interchanges on an input matrix.dpttrf( N, D, E )
: compute theL * D * L^T
factorization of a real symmetric positive definite tridiagonal matrixA
.
Examples
var objectKeys = require( '@stdlib/utils-keys' );
var lapack = require( '@stdlib/lapack-base' );
console.log( objectKeys( lapack ) );
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
Community
License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.