0.1.4 • Published 5 years ago

neura-matrix v0.1.4

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

neura-matrix

Linear algebra calculations for neura library. TypeScript based.

Create matrix

import Matrix from 'neura-matrix'

const matrix = new Matrix([0, 0.5, 1], [0.2, 1, 0.3])
    

Transpose matrix

matrix.transpose()

Result: [[0, 0.2], [0.5, 1], [1, 0.3]]

Summarize matrices

matrixAlpha.sum(matrixBeta)

Interested in Neural Networks and JavaScript?

Feel free to join the project & contribute