Metadata-Version: 2.1
Name: GonumMatrixIO
Version: 0.0.7
Summary: A package to define functions that allow for easy read/writing of binary files used by golang's Gonum
Project-URL: Homepage, https://github.com/hmcalister/gonum-matrix-io
Project-URL: Bug Tracker, https://github.com/hmcalister/gonum-matrix-io/issues
Author-email: Hayden McAlister <haydenmcalister49@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# gonum-matrix-io
Offers some utilities to save [Gonum](https://pkg.go.dev/gonum.org/v1/gonum) matrices and vectors to a binary file, as well as some python scripts to load these files into numpy

## Usage

For use in Go, run `go get -u github.com/hmcalister/gonum-matrix-io`.

You may then import `hmcalister/gonum-matrix-io/gonumio` in your Go code, and use `gonumio.SaveMatrix` to save a matrix (for example).

---

On the Python side, run `pip install GonumMatrixIO` to install the corresponding python package from pip. Then you can access these files using `import GonumMatrixIO`.