https://github.com/milosgajdos/matrix
Helper functions for working with https://www.gonum.org/ matrices in Go
https://github.com/milosgajdos/matrix
Last synced: 28 days ago
JSON representation
Helper functions for working with https://www.gonum.org/ matrices in Go
- Host: GitHub
- URL: https://github.com/milosgajdos/matrix
- Owner: milosgajdos
- License: apache-2.0
- Created: 2019-01-02T00:49:33.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-20T10:34:24.000Z (about 2 years ago)
- Last Synced: 2025-04-23T19:25:25.746Z (28 days ago)
- Language: Go
- Homepage:
- Size: 35.2 KB
- Stars: 5
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# matrix
[](https://github.com/milosgajdos/matrix/actions?query=workflow%3ACI)
[](https://pkg.go.dev/github.com/milosgajdos/matrix)
[](https://godoc.org/github.com/milosgajdos/matrix)
[](https://opensource.org/licenses/Apache-2.0)
[](https://goreportcard.com/report/github.com/milosgajdos/matrix)This Go package contains various function useful when working with [gonum](https://www.gonum.org) matrices which are not provided by `gonum` [mat](https://godoc.org/gonum.org/v1/gonum/mat) package.
# Get started
Get the package:
```
$ go get -u github.com/milosgajdos/matrix
```Get dependencies:
```
$ make godep && make dep
```Run the tests:
```
$ make test
```# Contributing
**YES PLEASE!**
Please make sure you run the following command before you open a new PR:
```shell
$ make all
```