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

loshu

v0.0.1

Published

Linear Algebra for Javascript.

Downloads

3

Readme

Loshu.js

Linear Algebra for Javascript

Online REPL | API Reference

Loshu.js is a linear algebra library for JavaScript. It not only provides convienient manipulation of matrices and vectors, but is also capable of more advanced operations such as matrix decompositions, eigenvalue and vectors, solution and approximation to linear systems, and many more!

(Optionally) accelerated using WebAssembly.

Features

  • Basic matrix and vector math: multiplication, inverse, norm, ...
  • Matrix factorizations: QR, SVD, Polar, LDL, Cholesky, LUP, ...
  • Solving linear systems: Gauss-Jordan elimination, Least squares approximation, ...
  • Miscellaneous utilities: affine transformation, n-dimensional point/line/plane distance, ...
  • Pretty print matrices
  • Simple to use, documented interface
  • Try it out in your browser with the online REPL
  • Additional WebAssembly implementation for certain matrix math (C++ → emscripten) for up to 100x speed boost

Quick Start

For Browser

To use the library, simply include the following to your html:

<script src="https://loshu.glitch.me/loshu.js"></script>

To enable Web Assembly acceleration of some functionalities such as eigen(), inv() and svd(), include the loshuwasm.js script before loshu.js, like so:

<script src="https://loshu.glitch.me/loshuwasm.js"></script>
<script src="https://loshu.glitch.me/loshu.js"></script>

You will see a web assembly backend initialized message in console if the wasm module is detected. Otherwise you can manually turn it on using lo.options.usewasm=true.

You can also download the scripts from the links above and host them yourself, but you'll also need to download here the .wasm binary and put it in the same folder.

For Node.js

To use the library with node.js, download and require it like so:

const lo = require("./loshu")

To enable Web Assembly acceleration of some functionalities such as eigen(), inv() and svd(), Download the wasm binary as well as the wrapper and put them under the same folder. You will see a web assembly backend initialized message in the console.

Examples

let A = [[1,2,3],[4,5,6],[7,8,9]];  // matrix is just JS array (row major)
let B = lo.rand(3,3);               // generate a 3x3 matrix of random values
let C = lo.mul(A,B)                 // array multiplication

let [U,S,V] = lo.svd(C);  // singular value decomposition
lo.print(U,S,V);          // pretty print the matrices

let l = lo.lsqfit([[0,0],[1,1],[2,1.9],[3,3.1]],{order:1}) // fit a line to data points
lo.print(`y = ${l[0].toFixed(2)} + ${l[1].toFixed(2)} x`); // display the line equation

let M = lo.affine('roty',Math.PI/4); // create a 45° rotation matrix around y axis
let u = [1,2,3];                     // some vector
let v = lo.transform(M,u);           // apply the transform

Function List

| | | | | |-|-|-|-| |add()|adj()|affine()|approx()| |assert()|blit()|cholesky()|clone()| |cofactor()|cond()|cross()|det()| |diagonal()|dist()|dot()|eigen()| |gauss()|gaussjordan()|gerschgorin()|gramschmidt()| |hasinf()|hasnan()|hessenberg()|householder()| |hsplit()|hstack()|iden()|inv()| |ishermitian()|ismat()|isnum()|isperm()| |issquare()|isunitary()|isvec()|ldl()| |lsq()|lsqfit()|lup()|magic()| |map()|matmul()|minor()|mul()| |ncols()|norm()|normalize()|nrows()| |outer()|pinv()|polar()|print()| |proj()|qr()|rand()|rank()| |scale()|size()|slice()|sub()| |svd()|tr()|transform()|transpose()| |zeros()|

References

The development of this library is largely inspired by the textbook, David Poole's Linear Algebra: A Modern Introduction.

Besides Wikipedia and Wolfram MathWorld, the following online resources have also been very helpful in explaining algorithms.

  • http://pi.math.cornell.edu/~web6140/TopTenAlgorithms/QRalgorithm.html
  • https://www.mathworks.com/matlabcentral/fileexchange/38303-linear-algebra-package
  • http://buzzard.ups.edu/courses/2014spring/420projects/math420-UPS-spring-2014-buffington-polar-decomposition.pdf
  • http://webhome.auburn.edu/~tamtiny/lecture%2010.pdf
  • https://www.cs.cmu.edu/~venkatg/teaching/CStheory-infoage/book-chapter-4.pdf
  • http://math.mit.edu/~gs/linearalgebra/ila0403.pdf