npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

nlapack

v2.0.9

Published

C++ bindings for all single- and double-precision CLAPACK (Linear Algebra Package) routines.

Downloads

348

Readme

nLAPACK version travis maintainability Test Coverage

Greenkeeper badge

Node >=6.9 C++ bindings for all single- and double-precision LAPACK (Linear Algebra Package) routines.

Requirements

Linux

$ sudo apt-get install libblas-dev liblapack-dev liblapacke-dev

MacOS

$ brew install lapack

Usage

$ npm install nlapack

LAPACK Linear Equation Computational Routines

Matrix Factorization

  • [x] ?getrf(m, n, a, lda, ipiv)
  • [ ] ?getrf2(m, n, a, lda, ipiv)
  • [x] ?gbtrf(m, n, kl, ku, ab, ldab, ipiv)
  • [x] ?gttrf(n, dl, d, du, du2, ipiv)
  • [ ] ?dttrfb(n, dl, d, du)
  • [x] ?potrf(uplo, n, a, lda)
  • [ ] ?potrf2(uplo, n, a, lda)
  • [x] ?pstrf(uplo, n, a, lda, piv, rank, tol)
  • [x] ?pftrf(transr, uplo, n, a)
  • [x] ?pptrf(uplo, n, ap)
  • [x] ?pbtrf(uplo, n, kd, ab, ldab)
  • [x] ?pttrf(n, d, e)
  • [x] ?sytrf(uplo, n, a, lda, ipiv)
  • [ ] ?sytrf_aa(uplo, n, a, lda, ipiv)
  • [ ] ?sytrf_rook(uplo, n, a, lda, ipiv)
  • [ ] ?hetrf(uplo, n, a, lda, ipiv)
  • [ ] ?hetrf_aa(uplo, n, a, lda, ipiv)
  • [ ] ?hetrf_rook(uplo, n, a, lda, ipiv)
  • [x] ?sptrf(uplo, n, ap, ipiv)
  • [ ] ?hptrf(uplo, n, ap, ipiv)

Solving Systems of Linear Equations

  • [x] ?getrs(trans, n, nrhs, a, lda, ipiv, b, ldb)
  • [x] ?gbtrs(trans, n, kl, ku, nrhs, ab, ldab, ipiv, b, ldb)
  • [x] ?gttrs(trans, n, nrhs, dl, d, du du2, ipiv, b, ldb)
  • [ ] ?dttrsb(trans, n, nrhs, dl, d, du, b, ldb)
  • [x] ?potrs(uplo, n, nrhs, a, lda, b, ldb)
  • [x] ?pftrs(transr, uplo, n, nrhs, a, b, ldb)
  • [x] ?pptrs(uplo, n, nrhs, ap, b, ldb)
  • [x] ?pbtrs(uplo, n, kd, nrhs, ab, ldab, b, ldb)
  • [x] ?pttrs(n, nrhs, d, e, b, ldb)
  • [x] ?sytrs(uplo, n, nrhs, a, lda, ipiv, b, ldb)
  • [ ] ?sytrs_aa(uplo, n, nrhs, a, lda, ipiv, b, ldb)
  • [ ] ?sytrs_rook(uplo, n, nrhs, a, lda, ipiv, b, ldb)
  • [ ] ?hetrs()
  • [ ] ?hetrs_aa()
  • [ ] ?hetrs_rook()
  • [ ] ?sytrs2(uplo, n, nrhs, a, lda, ipiv, b, ldb)
  • [ ] ?hetrs2()
  • [x] ?sptrs(uplo, n, nrhs, ap, ipiv, b, ldb)
  • [ ] ?hptrs()
  • [x] ?trtrs(uplo, trans, diag, n, nrhs, a, lda, b, ldb)
  • [x] ?tptrs(uplo, trans, diag, n, nrhs, ap, b, ldb)
  • [x] ?tbtrs(uplo, trans, diag, n, kd, nrhs, ab, ldab, b, ldb)

Estimating the Condition Number

  • [x] ?gecon(norm, n, a, lda, anorm, rcond)
  • [x] ?gbcon(norm, n, kl, ku, ab, ldab, ipiv, anorm, rcond)
  • [x] ?gtcon(norm, n, dl, d, du, du2, ipiv, anorm, rcond)
  • [x] ?pocon(uplo, n, a, lda, anorm, rcond)
  • [x] ?ppcon(uplo, n, ap, anorm, rcond)
  • [x] ?pbcon(uplo, n, kd, ab, ldab, anorm, rcond)
  • [x] ?ptcon(uplo, d, e, anorm, rcond)
  • [x] ?sycon(uplo, n, a, lda, ipiv, anorm, rcond)
  • [ ] ?sycon_rook(uplo, n, a, lda, ipiv, anorm, rcond)
  • [ ] ?hecon(uplo, n, a, lda, ipiv, anorm, rcond)
  • [ ] ?hecon_rook(uplo, n, a, lda, ipiv, anorm, rcond)
  • [x] ?spcon(uplo, n, ap, ipiv, anorm, rcond)
  • [x] ?trcon(norm, uplo, diag, n, a, lda, rcond)
  • [x] ?tpcon(norm, uplo, diag, n, ap, rcond)
  • [x] ?tbcon(norm, uplo, diag, n, kd, ab, ldab, rcond)

Refining the Solution and Estimating Its Error

  • [x] ?gerfs(trans, n, nrhs, a, lda, af, ldaf, ipiv, b, ldb, x, ldx, ferr, berr)
  • [x] ?gerfsx(trans, equed, n, nrhs, a, lda, af, ldaf, ipiv, r, c, b, ldb, x, ldx, rcond, berr, n_err_bnds, err_bnds_norm, err_bnds_comp, nparams, params)
  • [x] ?gbrfs(trans, n, kl, ku, nrhs, ab, ldab, afb, ldafb, ipiv, b, ldb, x, ldx, ferr, berr)
  • [x] ?gbrfsx(trans, equed, n, kl, ku, nrhs, ab, ldab, afb, ldafb, ipiv, r, c, b, ldb, x, ldx, rcond, berr, n_err_bnds, err_bnds_norm, err_bnds_comp, nparams, params)
  • [x] ?gtrfs(trans, n, nrhs, dl, d, du, dlf, df, duf, du2, ipiv, b, ldb, x, ldx, ferr, berr)
  • [x] ?porfs(uplo, n, nrhs, a, lda, af, ldaf, b, ldb, x, ldx, ferr, berr)
  • [x] ?porfsx(uplo, equed, n, nrhs, a, lda, af, ldaf, s, b, ldb, x, ldx, rcond, berr, n_err_bnds, err_bnds_norm, err_bnds_comp, nparams, params)
  • [x] ?pprfs(uplo, n, nrhs, ap, afp, b, ldb, x, ldx, ferr, berr)
  • [x] ?pbrfs(uplo, n, kd, nrhs, ab, ldab, afb, ldafb, b, ldb, x, ldx, ferr, berr)
  • [x] ?ptrfs(n, nrhs, d, e, df, ef, b, ldb, x, ldx, ferr, berr)
  • [x] ?syrfs(uplo, n, nrhs, a, lda, af, ldaf, ipiv, b, ldb, x, ldx, ferr, berr)
  • [x] ?syrfsx(uplo, equed, n, nrhs, a, lda, af, ldaf, ipiv, s, b, ldb, x, ldx, rcond, berr, n_err_bnds, err_bnds_norm, err_bnds_comp, nparams, params)
  • [ ] ?herfs(uplo, n, nrhs, a, lda, af, ldaf, ipiv, b, ldb, x, ldx, ferr, berr)
  • [ ] ?herfsx(uplo, equed, n, nrhs, a, lda, af, ldaf, ipiv, s, b, ldb, x, ldx, rcond, berr, n_err_bnds, err_bnds_norm, err_bnds_comp, nparams, params)
  • [x] ?sprfs(uplo, n, nrhs, ap, afp, ipiv, b, ldb, x, ldx, ferr, berr)
  • [ ] ?hprfs(uplo, n, nrhs, ap, afp, ipiv, b, ldb, x, ldx, ferr, berr)
  • [x] ?trrfs(uplo, trans, diag, n, nrhs, a, lda, b, ldb, x, ldx, ferr, berr)
  • [x] ?tprfs(uplo, trans, diag, n, nrhs, ap, b, ldb, x, ldx, ferr, berr)
  • [x] ?tbrfs(uplo, trans, diag, n, kd, nrhs, ab, ldab, b, ldb, x, ldx, ferr, berr)

Matrix Inversion

  • [x] ?getri(n, a, lda, ipiv)
  • [x] ?potri(uplo, n, a, lda)
  • [x] ?pftri(transr, uplo, n, a)
  • [x] ?pptri(uplo, n, ap)
  • [x] ?sytri(uplo, n, a, lda, ipiv)
  • [ ] ?sytri_rook(uplo, n, a, lda, ipiv)
  • [ ] ?hetri(uplo, n, a, lda, ipiv)
  • [ ] ?hetri_rook(uplo, n, a, lda, ipiv)
  • [ ] ?sytri2(uplo, n, a, lda, ipiv)
  • [ ] ?hetri2(uplo, n, a, lda, ipiv)
  • [ ] ?sytri2x(uplo, n, a, lda, ipiv, nb)
  • [ ] ?hetri2x(uplo, n, a, lda, ipiv, nb)
  • [x] ?sptri(uplo, n, ap, ipiv)
  • [ ] ?hptri(uplo, n, ap, ipiv)
  • [x] ?trtri(uplo, diag, n, a, lda)
  • [x] ?tftri(transr, uplo, diag, n, a)
  • [x] ?tptri(uplo, diag, n, ap)

Matrix Equilibration

  • [x] ?geequ(m, n, a, lda, r, c, rowcnd, colcnd, amax)
  • [x] ?geequb(m, n, a, lda, r, c, rowcnd, colcnd, amax)
  • [x] ?gbequ(m, n, kl, ku, ab, ldab, r, c, rowcnd, colcnd, amax)
  • [x] ?gbequb(m, n, kl, ku, ab, ldab, r, c, rowcnd, colcnd, amax)
  • [x] ?poequ(n, a, lda, s, scond, amax)
  • [x] ?poequb(n, a, lda, s, scond, amax)
  • [x] ?ppequ(uplo, n, ap, s, scond, amax)
  • [x] ?pbequ(uplo, n, kd, ab, ldab, s, scond, amax)
  • [x] ?syequb(uplo, n, a, lda, s, scond, amax)
  • [ ] ?heequb(uplo, n, a, lda, s, scond, amax)

LAPACK Linear Equation Driver Routines

  • [x] ?gesv(n, nrhs, a, lda, ipiv, b, ldb)

LAPACK Least Squares and Eigenvalue Problem Driver Routines

  • [x] ?geev(jobvl, jobvr, n, a, lda, wr, wi, vl, ldvl, vr, ldvr)

LAPACK Utility Functions and Routines

  • [x] ilaver(vers_major, vers_minor, vers_patch)
  • [x] ?lamch(cmach)

LAPACK Test Functions and Routines

  • [x] ?latms(m, n, dist, iseed, sym, d, mode, cond, dmax, kl, ku, pack, a, lda)

Double precision functions expect Float64Array vectors, single precision functions expect Float32Array vectors.