Biblioteca Javascript para realizar operações sobre matrizes em um paradígma funcional. Para isso, define um tipo imutável para representar matrizes e define também uma śerie de funções puras que realizam operações sobre matrizes.
Instale a biblioteca
npm install sci-matrix
Importe a bliblioteca
import Matrix from 'sci-matrix'
Crie matrizes
const A = new Matrix('identity', 3)
Aplique funções
const C = addMatrices(A, B)
Consulte propriedades dos objetos das matrizes criadas com new Matrix
console.log(A.rows) // 3
- Webpack - A static module bundler for modern JavaScript applications.
- Babel - The compiler for writing next generation JavaScript.
- Mocha - The fun, simple, flexible JavaScript test framework.
- Chai - A BDD / TDD assertion library for node and the browser that can be delightfully paired with any javascript testing framework.
- Nyc - The Istanbul command line interface.
- ESLint - Pluggable JavaScript linter.
- Husky - Git hooks made easy.
- James Oliveira da Silva - Initial work - jamesodas
This project is licensed under the MIT License - see the LICENSE.md file for details