稀疏矩阵
稀疏矩阵库。
安装
$ npm i ml-sparse-matrix
用法
import { SparseMatrix } from "ml-sparse-matrix" ;
const matrix1 = new SparseMatrix ( [
[ 1 , 2 ] ,
[ 3 , 4 ] ,
] ) ;
const matrix2 = new SparseMatrix ( [
[ 0 , 5 ] ,
[ 6 , 7 ] ,
] ) ;
const product = matrix1 . kroneckerProduct ( matrix2 ) ;
执照
1