neura-matrix
v0.1.4
Published
Matrix operations for Neura with no dependencies
Downloads
1
Maintainers
Readme
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