1.0.1 • Published 8 years ago

node-hperformance v1.0.1

Weekly downloads
7
License
MIT
Repository
github
Last release
8 years ago

node-hperformance NPM version Build Status Dependency Status

High-performance libraries for node.

This module implements the most typical methods of lapack library across of bridge offered to C. So, if you want to use this module you need to have it installed.

on Ubuntu (Maybe you need to install something else)

 sudo apt-get install liblapack-dev

Install

$ npm install --save node-hperformance

Usage

var lapack = require('node-hperformance').lapack;

lapack.dgesv(A, b);
lapack.dgels(trans, A, b);
lapack.dgelqf(A);
lapack.dgesvd(A);

lapack.dgesv_(n, nrhs, lda, ldb, A, b);
lapack.dgels_(trans, m, n, nrhs, lda, ldb, lwork, A, b);
lapack.dgelqf_(m, n, A, lda, ltau, lwork);
lapack.dgesvd_(m, n, A, lda, ldu, ldvt);

License

MIT © Alex Matos

References

http://www.netlib.org/clapack/ http://www.netlib.org/lapack/explore-html/index.html http://nikhilm.bitbucket.org/articles/c_in_my_javascript/c_in_javascript_part_2.html https://software.intel.com/sites/products/documentation/doclib/mkl_sa/11/mkl_lapack_examples/

1.0.1

8 years ago

1.0.0

8 years ago