Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 546 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 546 Bytes

matrix


Matrix calculation for golang
Initial the matrix to Zeros, Ones, Eye and so on
The function conclude add, sub, multiplication, transpose and so on


##Installation Simple install the package to your $GOPATH with the go tool from shell:
go get github.com/tantanbei/matrix
Make sure Git is installed on your machine and in your system's PATH.


##Usage
Use matrix just import this package :
import "github.com/tantanbei/matrix"
and easy to initial, like :
m := matrix.NewMatrixEye(3)