├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── examples └── exampleMemmap.m ├── npy-matlab ├── constructNPYheader.m ├── datToNPY.m ├── readNPY.m ├── readNPYheader.m └── writeNPY.m └── tests ├── data ├── chelsea_float32.npy ├── chelsea_float64.npy ├── chelsea_int16.npy ├── chelsea_int32.npy ├── chelsea_int64.npy ├── chelsea_int8.npy ├── chelsea_uint16.npy ├── chelsea_uint32.npy ├── chelsea_uint64.npy ├── chelsea_uint8.npy ├── matlab_chelsea_float32.npy ├── matlab_chelsea_float64.npy ├── matlab_chelsea_int16.npy ├── matlab_chelsea_int32.npy ├── matlab_chelsea_int64.npy ├── matlab_chelsea_int8.npy ├── matlab_chelsea_uint16.npy ├── matlab_chelsea_uint32.npy ├── matlab_chelsea_uint64.npy ├── matlab_chelsea_uint8.npy ├── matlab_sine_float32.npy ├── matlab_sine_float64.npy ├── matlab_sine_int16.npy ├── matlab_sine_int32.npy ├── matlab_sine_int64.npy ├── matlab_sine_int8.npy ├── matlab_sine_uint16.npy ├── matlab_sine_uint32.npy ├── matlab_sine_uint64.npy ├── matlab_sine_uint8.npy ├── sine_float32.npy ├── sine_float64.npy ├── sine_int16.npy ├── sine_int32.npy ├── sine_int64.npy ├── sine_int8.npy ├── sine_uint16.npy ├── sine_uint32.npy ├── sine_uint64.npy ├── sine_uint8.npy └── test.npy ├── npy.ipynb ├── test_npy_roundtrip.py └── test_readNPY.m /.gitignore: -------------------------------------------------------------------------------- 1 | *.asv 2 | .ipynb_checkpoints/ 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/README.md -------------------------------------------------------------------------------- /examples/exampleMemmap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/examples/exampleMemmap.m -------------------------------------------------------------------------------- /npy-matlab/constructNPYheader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/npy-matlab/constructNPYheader.m -------------------------------------------------------------------------------- /npy-matlab/datToNPY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/npy-matlab/datToNPY.m -------------------------------------------------------------------------------- /npy-matlab/readNPY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/npy-matlab/readNPY.m -------------------------------------------------------------------------------- /npy-matlab/readNPYheader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/npy-matlab/readNPYheader.m -------------------------------------------------------------------------------- /npy-matlab/writeNPY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/npy-matlab/writeNPY.m -------------------------------------------------------------------------------- /tests/data/chelsea_float32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/chelsea_float32.npy -------------------------------------------------------------------------------- /tests/data/chelsea_float64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/chelsea_float64.npy -------------------------------------------------------------------------------- /tests/data/chelsea_int16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/chelsea_int16.npy -------------------------------------------------------------------------------- /tests/data/chelsea_int32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/chelsea_int32.npy -------------------------------------------------------------------------------- /tests/data/chelsea_int64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/chelsea_int64.npy -------------------------------------------------------------------------------- /tests/data/chelsea_int8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/chelsea_int8.npy -------------------------------------------------------------------------------- /tests/data/chelsea_uint16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/chelsea_uint16.npy -------------------------------------------------------------------------------- /tests/data/chelsea_uint32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/chelsea_uint32.npy -------------------------------------------------------------------------------- /tests/data/chelsea_uint64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/chelsea_uint64.npy -------------------------------------------------------------------------------- /tests/data/chelsea_uint8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/chelsea_uint8.npy -------------------------------------------------------------------------------- /tests/data/matlab_chelsea_float32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/matlab_chelsea_float32.npy -------------------------------------------------------------------------------- /tests/data/matlab_chelsea_float64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/matlab_chelsea_float64.npy -------------------------------------------------------------------------------- /tests/data/matlab_chelsea_int16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/matlab_chelsea_int16.npy -------------------------------------------------------------------------------- /tests/data/matlab_chelsea_int32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/matlab_chelsea_int32.npy -------------------------------------------------------------------------------- /tests/data/matlab_chelsea_int64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/matlab_chelsea_int64.npy -------------------------------------------------------------------------------- /tests/data/matlab_chelsea_int8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/matlab_chelsea_int8.npy -------------------------------------------------------------------------------- /tests/data/matlab_chelsea_uint16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/matlab_chelsea_uint16.npy -------------------------------------------------------------------------------- /tests/data/matlab_chelsea_uint32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/matlab_chelsea_uint32.npy -------------------------------------------------------------------------------- /tests/data/matlab_chelsea_uint64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/matlab_chelsea_uint64.npy -------------------------------------------------------------------------------- /tests/data/matlab_chelsea_uint8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/matlab_chelsea_uint8.npy -------------------------------------------------------------------------------- /tests/data/matlab_sine_float32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/matlab_sine_float32.npy -------------------------------------------------------------------------------- /tests/data/matlab_sine_float64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/matlab_sine_float64.npy -------------------------------------------------------------------------------- /tests/data/matlab_sine_int16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/matlab_sine_int16.npy -------------------------------------------------------------------------------- /tests/data/matlab_sine_int32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/matlab_sine_int32.npy -------------------------------------------------------------------------------- /tests/data/matlab_sine_int64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/matlab_sine_int64.npy -------------------------------------------------------------------------------- /tests/data/matlab_sine_int8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/matlab_sine_int8.npy -------------------------------------------------------------------------------- /tests/data/matlab_sine_uint16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/matlab_sine_uint16.npy -------------------------------------------------------------------------------- /tests/data/matlab_sine_uint32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/matlab_sine_uint32.npy -------------------------------------------------------------------------------- /tests/data/matlab_sine_uint64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/matlab_sine_uint64.npy -------------------------------------------------------------------------------- /tests/data/matlab_sine_uint8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/matlab_sine_uint8.npy -------------------------------------------------------------------------------- /tests/data/sine_float32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/sine_float32.npy -------------------------------------------------------------------------------- /tests/data/sine_float64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/sine_float64.npy -------------------------------------------------------------------------------- /tests/data/sine_int16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/sine_int16.npy -------------------------------------------------------------------------------- /tests/data/sine_int32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/sine_int32.npy -------------------------------------------------------------------------------- /tests/data/sine_int64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/sine_int64.npy -------------------------------------------------------------------------------- /tests/data/sine_int8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/sine_int8.npy -------------------------------------------------------------------------------- /tests/data/sine_uint16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/sine_uint16.npy -------------------------------------------------------------------------------- /tests/data/sine_uint32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/sine_uint32.npy -------------------------------------------------------------------------------- /tests/data/sine_uint64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/sine_uint64.npy -------------------------------------------------------------------------------- /tests/data/sine_uint8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/sine_uint8.npy -------------------------------------------------------------------------------- /tests/data/test.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/data/test.npy -------------------------------------------------------------------------------- /tests/npy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/npy.ipynb -------------------------------------------------------------------------------- /tests/test_npy_roundtrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/test_npy_roundtrip.py -------------------------------------------------------------------------------- /tests/test_readNPY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwikteam/npy-matlab/HEAD/tests/test_readNPY.m --------------------------------------------------------------------------------