├── CMakeLists.txt ├── LICENSE ├── README.md ├── cnpy.cpp ├── cnpy.h ├── example1.cpp ├── mat2npz ├── npy2mat └── npz2mat /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogersce/cnpy/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogersce/cnpy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogersce/cnpy/HEAD/README.md -------------------------------------------------------------------------------- /cnpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogersce/cnpy/HEAD/cnpy.cpp -------------------------------------------------------------------------------- /cnpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogersce/cnpy/HEAD/cnpy.h -------------------------------------------------------------------------------- /example1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogersce/cnpy/HEAD/example1.cpp -------------------------------------------------------------------------------- /mat2npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogersce/cnpy/HEAD/mat2npz -------------------------------------------------------------------------------- /npy2mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogersce/cnpy/HEAD/npy2mat -------------------------------------------------------------------------------- /npz2mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogersce/cnpy/HEAD/npz2mat --------------------------------------------------------------------------------