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

@astuanax/funmatrix

v1.0.4

Published

Matrix monad

Downloads

6

Readme

funmatrix

Matrix applicative providing standard matrix operations Fork on Github

Build Status Code Climate Test Coverage GitHub file size in bytes Check bundle size on bundlephobia

Docs

The documentation can be found in the /docs folder or at the url https://astuanax.github.io/funmatrix/ Or a json format of the docs: docs.json

Generate docs using: npm run jsdocs

Install funmatrix.js

$ npm install @astuanax/funmatrix --save

Getting started

// Create matrix
const m = Matrix.of([[1, 2], [3, 4]])

// Generate identity matrix
const I  = m.identity() // [[1, 0], [0, 1]]

if(m.dot(I).equals(m)) {
    console.log('Dot product with identity matrix returns the same matrix')
}0

Create a matrix

There are 2 ways to instantiate a Matrix, though you should not use the new keyword.

Matrix.of()

Matrix.ofaccepts both an array of arrays or a Matrix

const a = Matrix.of([[1, 2], [2, 3]])  // returns a Matrix
const b = Matrix.of(a) // returns a flattened Matrix from Matrix a

Matrix.fromArray()

fromArray returns an Matrix with a clone of the provided array

Matrix.fromArray([[1, 2], [2, 3]])

Higher order functions

  • map
  • fold
  • ap
  • concat

Methods and properties

  • add - a scalar or a Matrix
  • additiveinverse - multiply by -1
  • clone - clone a Matrix
  • combine - combine 2 Matrices together
  • dimension - get the rank
  • dot - Calculate dotproduct of 2 Matrices
  • empty - Return an empty Matrix
  • equals - check if the Matrix deep equals another Matrix
  • fromArray - Creates a Matrix from an Array
  • getCols - Get the columns of the Matrix
  • getRows - Get the rows of a Matrix
  • getShape - Get the shape of a Matrix
  • hadamard - Multiply a matrix witha scalar or another matrix
  • identity - Returns an identity Matrix
  • inverse - Returns theinverse of a Matrix
  • isOrthogonal - Boolean indicating orhogonality
  • isSymmetric - Boolean indicating symmetry
  • lu - Returns 2 Matrices, Lower and Upper Matrix decomposition
  • multiply - Multiplies a Matrix with a scalar or another Matrix
  • ones - Fills a Matrix with 1 values
  • precision - REturns the precision of the calculations used in dot product
  • random - Fills a Matrix with random values (accepts a function)
  • rank - Returns the rank of a Matrix
  • rref - Returns the Row Reduced Echelon form
  • setPrecision - Allows to set the precision
  • solve (for b) - Solves the equation ax = b
  • toArray - Returns an array
  • transpose - Returns a tranposed Matrix
  • zeros - Fills the Matrix with 0 values
  • determinant - Calculates the determinant usin LU decomposition