Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ready-steady/mat
Reader and writer of MATLAB MAT-files
https://github.com/ready-steady/mat
data-format matlab science
Last synced: 17 days ago
JSON representation
Reader and writer of MATLAB MAT-files
- Host: GitHub
- URL: https://github.com/ready-steady/mat
- Owner: ready-steady
- License: mit
- Created: 2014-08-26T08:21:26.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-25T18:45:56.000Z (almost 10 years ago)
- Last Synced: 2024-10-25T04:24:57.427Z (2 months ago)
- Topics: data-format, matlab, science
- Language: Go
- Homepage:
- Size: 602 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# MATLAB MAT
The package provides a reader and writer of [MATLAB MAT-files][1].
## [Documentation][doc]
## Installation
Fetch the package:
```bash
go get -d github.com/ready-steady/mat
```Go to the directory of the package:
```bash
cd $GOPATH/src/github.com/ready-steady/mat
```Set the `MATLAB_ROOT` and `MATLAB_ARCH` environment variables according to your
MATLAB installation. For example,```bash
export MATLAB_ROOT=/Applications/MATLAB_R2015a.app
export MATLAB_ARCH=maci64
```Finally, install the package:
```bash
make install
```In order to run an executable that relies on this package, the dynamic linker
should be able to discover MATLAB’s libraries. To this end, an appropriate
environment variable should be set depending on your system. For example,```bash
export DYLD_LIBRARY_PATH="$MATLAB_ROOT/bin/$MATLAB_ARCH:$DYLD_LIBRARY_PATH"
```## Contributing
1. Fork the project.
2. Implement your idea.
3. Create a pull request.[1]: http://www.mathworks.com/help/pdf_doc/matlab/apiext.pdf
[doc]: http://godoc.org/github.com/ready-steady/mat