math-utils / eig

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

eig

NPM version Build status Test coverage Dependency Status License Downloads Gittip

Get the eigenvalues and eigenvectors of a row-based matrix. Currently based on eigenfaces, but that will hopefully change soon.

API

var eig = require('eig')

eig([[1,0],[0,1]]).then(function (result) {
  console.log(result.eigenvalues)
  console.log(result.eigenvectors)
})

About

License:MIT License


Languages

Language:JavaScript 55.1%Language:Python 44.9%