sparsemat:二进制Galois场上的值的简单稀疏矩阵 GF(2) 源码
稀疏 一个简单的稀疏矩阵,用于二进制Galois字段-GF(2)上的值。 目前已实施: :不是在地图中使用(row,col)对,而是分解为地图。 未来的实现: 用法 输入: import mat "github.com/nathanhack/sparsemat/dok" //or import mat "github.com/nathanhack/sparsemat/csr" 创建一个矩阵: m1 := mat.Identity(3) m2 := mat.NewMat(3,3, 1,0,0,0,1,0,0,0,1) 乘法: Mul r := mat.NewMat(3,3) r.Mul(m1,m2) // multiplies m1xm2 and stores into r 存取器: At和Set fmt.Printf("value at (%v,%v) is %v\n
文件列表
sparsemat-master.zip
(预估有个13文件)
sparsemat-master
.gitignore
276B
go.mod
98B
dok
vec_test.go
13KB
mat.go
18KB
vec.go
11KB
mat_test.go
17KB
LICENSE
1KB
go.sum
362B
暂无评论