├── .gitignore ├── common.h ├── external ├── matlabfunctions.c └── matlabfunctions.h ├── makefile ├── math-funcs.c ├── math-funcs.h ├── pyin.c ├── pyin.h ├── readme.md ├── test ├── test.c └── vaiueo2d.wav └── yin.c /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *~ 3 | *.o 4 | *.a 5 | 6 | -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sleepwalking/libpyin/HEAD/common.h -------------------------------------------------------------------------------- /external/matlabfunctions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sleepwalking/libpyin/HEAD/external/matlabfunctions.c -------------------------------------------------------------------------------- /external/matlabfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sleepwalking/libpyin/HEAD/external/matlabfunctions.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sleepwalking/libpyin/HEAD/makefile -------------------------------------------------------------------------------- /math-funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sleepwalking/libpyin/HEAD/math-funcs.c -------------------------------------------------------------------------------- /math-funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sleepwalking/libpyin/HEAD/math-funcs.h -------------------------------------------------------------------------------- /pyin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sleepwalking/libpyin/HEAD/pyin.c -------------------------------------------------------------------------------- /pyin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sleepwalking/libpyin/HEAD/pyin.h -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sleepwalking/libpyin/HEAD/readme.md -------------------------------------------------------------------------------- /test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sleepwalking/libpyin/HEAD/test/test.c -------------------------------------------------------------------------------- /test/vaiueo2d.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sleepwalking/libpyin/HEAD/test/vaiueo2d.wav -------------------------------------------------------------------------------- /yin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sleepwalking/libpyin/HEAD/yin.c --------------------------------------------------------------------------------