├── LICENSE ├── MAPS Evaluation.ipynb ├── PEFAC ├── enframe.m ├── filtbankm.m ├── fxpefac.m ├── gaussmixp.m ├── rfft.m ├── spgrambw.m ├── stdspectrum.m ├── v_findpeaks.m ├── voicebox.m └── winenvar.m ├── Pipfile ├── RAPT ├── distitar.m ├── fxrapt.m ├── irfft.m ├── lpcar2ra.m ├── lpcar2rf.m ├── lpcar2rr.m ├── lpcauto.m ├── lpcrf2rr.m ├── paramsetch.m ├── rfft.m └── v_findpeaks.m ├── README.md ├── YIN ├── .DS_Store ├── CHANGES ├── INSTALL ├── README ├── clarinet.au ├── clarinet.wav ├── junk │ ├── ddftoperiods.m │ ├── ddftoperiods.mex │ ├── ddftoperiods2.m │ ├── ddftoperiods2.mex │ ├── dftoddf_inplace.m │ ├── dftoddf_inplace.mex │ ├── dftoperiod_gen.%b5 │ ├── dftoperiod_gen.%b5 Data │ │ ├── CW Settings.stg │ │ └── MATLAB PPC MEX-file.tdt │ ├── dftoperiod_gen.c │ ├── dftoperiod_gen.prefix │ ├── dftoperiod_pratio.c │ ├── minparabolic2_inplace.m │ ├── minparabolic2_inplace.mex │ ├── mwrap.c │ └── yin2.m ├── private │ ├── .DS_Store │ ├── cumnorm_inplace.dll │ ├── cumnorm_inplace.m │ ├── cumnorm_inplace.mex │ ├── cumnorm_inplace.mexa64 │ ├── cumnorm_inplace.mexglx │ ├── cumnorm_inplace.mexmac │ ├── cumnorm_inplace.mexmaci │ ├── cumnorm_inplace.mexmaci64 │ ├── cumnorm_inplace.mexw32 │ ├── cumnorm_inplace.mexw64 │ ├── dftoperiod copy.m │ ├── dftoperiod.dll │ ├── dftoperiod.m │ ├── dftoperiod.mex │ ├── dftoperiod.mexa64 │ ├── dftoperiod.mexglx │ ├── dftoperiod.mexmac │ ├── dftoperiod.mexmaci │ ├── dftoperiod.mexmaci64 │ ├── dftoperiod.mexw32 │ ├── dftoperiod.mexw64 │ ├── dftoperiod2.dll │ ├── dftoperiod2.m │ ├── dftoperiod2.mex │ ├── dftoperiod2.mexa64 │ ├── dftoperiod2.mexglx │ ├── dftoperiod2.mexmac │ ├── dftoperiod2.mexmaci │ ├── dftoperiod2.mexmaci64 │ ├── dftoperiod2.mexw32 │ ├── dftoperiod2.mexw64 │ ├── dftoperiod_gen.mex │ ├── interp_inplace.dll │ ├── interp_inplace.mex │ ├── interp_inplace.mexa64 │ ├── interp_inplace.mexglx │ ├── interp_inplace.mexmac │ ├── interp_inplace.mexmaci │ ├── interp_inplace.mexmaci64 │ ├── interp_inplace.mexw32 │ ├── interp_inplace.mexw64 │ ├── mininrange.dll │ ├── mininrange.mex │ ├── mininrange.mexa64 │ ├── mininrange.mexglx │ ├── mininrange.mexmac │ ├── mininrange.mexmaci │ ├── mininrange.mexmaci64 │ ├── mininrange.mexw32 │ ├── mininrange.mexw64 │ ├── minparabolic.dll │ ├── minparabolic.m │ ├── minparabolic.mex │ ├── minparabolic.mexa64 │ ├── minparabolic.mexglx │ ├── minparabolic.mexmac │ ├── minparabolic.mexmaci │ ├── minparabolic.mexmaci64 │ ├── minparabolic.mexw32 │ ├── minparabolic.mexw64 │ ├── octave-workspace │ ├── rdiff_inplace.dll │ ├── rdiff_inplace.m │ ├── rdiff_inplace.mex │ ├── rdiff_inplace.mexa64 │ ├── rdiff_inplace.mexglx │ ├── rdiff_inplace.mexmac │ ├── rdiff_inplace.mexmaci │ ├── rdiff_inplace.mexmaci64 │ ├── rdiff_inplace.mexw32 │ ├── rdiff_inplace.mexw64 │ ├── rsmooth.dll │ ├── rsmooth.m │ ├── rsmooth.mex │ ├── rsmooth.mexa64 │ ├── rsmooth.mexglx │ ├── rsmooth.mexmac │ ├── rsmooth.mexmaci │ ├── rsmooth.mexmaci64 │ ├── rsmooth.mexw32 │ ├── rsmooth.mexw64 │ ├── rsum_inplace.dll │ ├── rsum_inplace.m │ ├── rsum_inplace.mex │ ├── rsum_inplace.mexa64 │ ├── rsum_inplace.mexglx │ ├── rsum_inplace.mexmac │ ├── rsum_inplace.mexmaci │ ├── rsum_inplace.mexmaci64 │ ├── rsum_inplace.mexw32 │ ├── rsum_inplace.mexw64 │ ├── sf_cleanup.m │ ├── sf_format.m │ ├── sf_info.m │ ├── sf_wave.m │ ├── src │ │ ├── .DS_Store │ │ ├── cumnorm_inplace.%b5 │ │ ├── cumnorm_inplace.%b5 Data │ │ │ ├── CW Settings.stg │ │ │ ├── FINDER.DAT │ │ │ ├── MATLAB PPC MEX-file.tdt │ │ │ └── RESOURCE.FRK │ │ │ │ └── MATLAB~1.TDT │ │ ├── cumnorm_inplace.c │ │ ├── cumnorm_inplace.mexmaci64 │ │ ├── cumnorm_inplace.prefix │ │ ├── dftoperiod.%b5 │ │ ├── dftoperiod.%b5 Data │ │ │ ├── CW Settings.stg │ │ │ └── MATLAB PPC MEX-file.tdt │ │ ├── dftoperiod.c │ │ ├── dftoperiod.mexmaci64 │ │ ├── dftoperiod.prefix │ │ ├── dftoperiod2.%b5 │ │ ├── dftoperiod2.%b5 Data │ │ │ ├── CW Settings.stg │ │ │ └── MATLAB PPC MEX-file.tdt │ │ ├── dftoperiod2.c │ │ ├── dftoperiod2.mexmaci64 │ │ ├── dftoperiod2.prefix │ │ ├── interp_inplace.%b5 │ │ ├── interp_inplace.%b5 Data │ │ │ ├── CW Settings.stg │ │ │ ├── FINDER.DAT │ │ │ └── MATLAB PPC MEX-file.tdt │ │ ├── interp_inplace.c │ │ ├── interp_inplace.mexmaci64 │ │ ├── interp_inplace.prefix │ │ ├── mininrange.%b5 │ │ ├── mininrange.%b5 Data │ │ │ ├── CW Settings.stg │ │ │ └── MATLAB PPC MEX-file.tdt │ │ ├── mininrange.c │ │ ├── mininrange.mexmaci64 │ │ ├── mininrange.prefix │ │ ├── minparabolic.%b5 │ │ ├── minparabolic.%b5 Data │ │ │ ├── CW Settings.stg │ │ │ ├── FINDER.DAT │ │ │ └── MATLAB PPC MEX-file.tdt │ │ ├── minparabolic.c │ │ ├── minparabolic.mexmaci64 │ │ ├── minparabolic.prefix │ │ ├── mwrap.h │ │ ├── mwrap.o │ │ ├── mwrap_check.h │ │ ├── rdiff_inplace.%b5 │ │ ├── rdiff_inplace.%b5 Data │ │ │ ├── CW Settings.stg │ │ │ ├── FINDER.DAT │ │ │ └── MATLAB PPC MEX-file.tdt │ │ ├── rdiff_inplace.c │ │ ├── rdiff_inplace.mex │ │ ├── rdiff_inplace.mexmaci64 │ │ ├── rdiff_inplace.prefix │ │ ├── rsmooth.%b5 │ │ ├── rsmooth.%b5 Data │ │ │ ├── CW Settings.stg │ │ │ └── MATLAB PPC MEX-file.tdt │ │ ├── rsmooth.c │ │ ├── rsmooth.mexmaci64 │ │ ├── rsmooth.prefix │ │ ├── rsum_inplace.%b5 │ │ ├── rsum_inplace.%b5 Data │ │ │ ├── CW Settings.stg │ │ │ ├── FINDER.DAT │ │ │ └── MATLAB PPC MEX-file.tdt │ │ ├── rsum_inplace.c │ │ ├── rsum_inplace.mex │ │ ├── rsum_inplace.mexmaci64 │ │ └── rsum_inplace.prefix │ └── yink.m ├── testyin.m ├── yin.html ├── yin.m └── yin2.m ├── helper.py ├── import_ptdb_tug.py ├── import_qut_noise.py ├── maps_f0.jl ├── maps_f0.m ├── maps_f0.py └── pdas.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /MAPS Evaluation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/MAPS Evaluation.ipynb -------------------------------------------------------------------------------- /PEFAC/enframe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/PEFAC/enframe.m -------------------------------------------------------------------------------- /PEFAC/filtbankm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/PEFAC/filtbankm.m -------------------------------------------------------------------------------- /PEFAC/fxpefac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/PEFAC/fxpefac.m -------------------------------------------------------------------------------- /PEFAC/gaussmixp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/PEFAC/gaussmixp.m -------------------------------------------------------------------------------- /PEFAC/rfft.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/PEFAC/rfft.m -------------------------------------------------------------------------------- /PEFAC/spgrambw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/PEFAC/spgrambw.m -------------------------------------------------------------------------------- /PEFAC/stdspectrum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/PEFAC/stdspectrum.m -------------------------------------------------------------------------------- /PEFAC/v_findpeaks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/PEFAC/v_findpeaks.m -------------------------------------------------------------------------------- /PEFAC/voicebox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/PEFAC/voicebox.m -------------------------------------------------------------------------------- /PEFAC/winenvar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/PEFAC/winenvar.m -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/Pipfile -------------------------------------------------------------------------------- /RAPT/distitar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/RAPT/distitar.m -------------------------------------------------------------------------------- /RAPT/fxrapt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/RAPT/fxrapt.m -------------------------------------------------------------------------------- /RAPT/irfft.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/RAPT/irfft.m -------------------------------------------------------------------------------- /RAPT/lpcar2ra.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/RAPT/lpcar2ra.m -------------------------------------------------------------------------------- /RAPT/lpcar2rf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/RAPT/lpcar2rf.m -------------------------------------------------------------------------------- /RAPT/lpcar2rr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/RAPT/lpcar2rr.m -------------------------------------------------------------------------------- /RAPT/lpcauto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/RAPT/lpcauto.m -------------------------------------------------------------------------------- /RAPT/lpcrf2rr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/RAPT/lpcrf2rr.m -------------------------------------------------------------------------------- /RAPT/paramsetch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/RAPT/paramsetch.m -------------------------------------------------------------------------------- /RAPT/rfft.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/RAPT/rfft.m -------------------------------------------------------------------------------- /RAPT/v_findpeaks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/RAPT/v_findpeaks.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/README.md -------------------------------------------------------------------------------- /YIN/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/.DS_Store -------------------------------------------------------------------------------- /YIN/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/CHANGES -------------------------------------------------------------------------------- /YIN/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/INSTALL -------------------------------------------------------------------------------- /YIN/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/README -------------------------------------------------------------------------------- /YIN/clarinet.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/clarinet.au -------------------------------------------------------------------------------- /YIN/clarinet.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/clarinet.wav -------------------------------------------------------------------------------- /YIN/junk/ddftoperiods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/junk/ddftoperiods.m -------------------------------------------------------------------------------- /YIN/junk/ddftoperiods.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/junk/ddftoperiods.mex -------------------------------------------------------------------------------- /YIN/junk/ddftoperiods2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/junk/ddftoperiods2.m -------------------------------------------------------------------------------- /YIN/junk/ddftoperiods2.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/junk/ddftoperiods2.mex -------------------------------------------------------------------------------- /YIN/junk/dftoddf_inplace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/junk/dftoddf_inplace.m -------------------------------------------------------------------------------- /YIN/junk/dftoddf_inplace.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/junk/dftoddf_inplace.mex -------------------------------------------------------------------------------- /YIN/junk/dftoperiod_gen.%b5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/junk/dftoperiod_gen.%b5 -------------------------------------------------------------------------------- /YIN/junk/dftoperiod_gen.%b5 Data/CW Settings.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/junk/dftoperiod_gen.%b5 Data/CW Settings.stg -------------------------------------------------------------------------------- /YIN/junk/dftoperiod_gen.%b5 Data/MATLAB PPC MEX-file.tdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/junk/dftoperiod_gen.%b5 Data/MATLAB PPC MEX-file.tdt -------------------------------------------------------------------------------- /YIN/junk/dftoperiod_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/junk/dftoperiod_gen.c -------------------------------------------------------------------------------- /YIN/junk/dftoperiod_gen.prefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/junk/dftoperiod_gen.prefix -------------------------------------------------------------------------------- /YIN/junk/dftoperiod_pratio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/junk/dftoperiod_pratio.c -------------------------------------------------------------------------------- /YIN/junk/minparabolic2_inplace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/junk/minparabolic2_inplace.m -------------------------------------------------------------------------------- /YIN/junk/minparabolic2_inplace.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/junk/minparabolic2_inplace.mex -------------------------------------------------------------------------------- /YIN/junk/mwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/junk/mwrap.c -------------------------------------------------------------------------------- /YIN/junk/yin2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/junk/yin2.m -------------------------------------------------------------------------------- /YIN/private/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/.DS_Store -------------------------------------------------------------------------------- /YIN/private/cumnorm_inplace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/cumnorm_inplace.dll -------------------------------------------------------------------------------- /YIN/private/cumnorm_inplace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/cumnorm_inplace.m -------------------------------------------------------------------------------- /YIN/private/cumnorm_inplace.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/cumnorm_inplace.mex -------------------------------------------------------------------------------- /YIN/private/cumnorm_inplace.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/cumnorm_inplace.mexa64 -------------------------------------------------------------------------------- /YIN/private/cumnorm_inplace.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/cumnorm_inplace.mexglx -------------------------------------------------------------------------------- /YIN/private/cumnorm_inplace.mexmac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/cumnorm_inplace.mexmac -------------------------------------------------------------------------------- /YIN/private/cumnorm_inplace.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/cumnorm_inplace.mexmaci -------------------------------------------------------------------------------- /YIN/private/cumnorm_inplace.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/cumnorm_inplace.mexmaci64 -------------------------------------------------------------------------------- /YIN/private/cumnorm_inplace.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/cumnorm_inplace.mexw32 -------------------------------------------------------------------------------- /YIN/private/cumnorm_inplace.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/cumnorm_inplace.mexw64 -------------------------------------------------------------------------------- /YIN/private/dftoperiod copy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod copy.m -------------------------------------------------------------------------------- /YIN/private/dftoperiod.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod.dll -------------------------------------------------------------------------------- /YIN/private/dftoperiod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod.m -------------------------------------------------------------------------------- /YIN/private/dftoperiod.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod.mex -------------------------------------------------------------------------------- /YIN/private/dftoperiod.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod.mexa64 -------------------------------------------------------------------------------- /YIN/private/dftoperiod.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod.mexglx -------------------------------------------------------------------------------- /YIN/private/dftoperiod.mexmac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod.mexmac -------------------------------------------------------------------------------- /YIN/private/dftoperiod.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod.mexmaci -------------------------------------------------------------------------------- /YIN/private/dftoperiod.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod.mexmaci64 -------------------------------------------------------------------------------- /YIN/private/dftoperiod.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod.mexw32 -------------------------------------------------------------------------------- /YIN/private/dftoperiod.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod.mexw64 -------------------------------------------------------------------------------- /YIN/private/dftoperiod2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod2.dll -------------------------------------------------------------------------------- /YIN/private/dftoperiod2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod2.m -------------------------------------------------------------------------------- /YIN/private/dftoperiod2.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod2.mex -------------------------------------------------------------------------------- /YIN/private/dftoperiod2.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod2.mexa64 -------------------------------------------------------------------------------- /YIN/private/dftoperiod2.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod2.mexglx -------------------------------------------------------------------------------- /YIN/private/dftoperiod2.mexmac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod2.mexmac -------------------------------------------------------------------------------- /YIN/private/dftoperiod2.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod2.mexmaci -------------------------------------------------------------------------------- /YIN/private/dftoperiod2.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod2.mexmaci64 -------------------------------------------------------------------------------- /YIN/private/dftoperiod2.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod2.mexw32 -------------------------------------------------------------------------------- /YIN/private/dftoperiod2.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod2.mexw64 -------------------------------------------------------------------------------- /YIN/private/dftoperiod_gen.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/dftoperiod_gen.mex -------------------------------------------------------------------------------- /YIN/private/interp_inplace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/interp_inplace.dll -------------------------------------------------------------------------------- /YIN/private/interp_inplace.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/interp_inplace.mex -------------------------------------------------------------------------------- /YIN/private/interp_inplace.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/interp_inplace.mexa64 -------------------------------------------------------------------------------- /YIN/private/interp_inplace.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/interp_inplace.mexglx -------------------------------------------------------------------------------- /YIN/private/interp_inplace.mexmac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/interp_inplace.mexmac -------------------------------------------------------------------------------- /YIN/private/interp_inplace.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/interp_inplace.mexmaci -------------------------------------------------------------------------------- /YIN/private/interp_inplace.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/interp_inplace.mexmaci64 -------------------------------------------------------------------------------- /YIN/private/interp_inplace.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/interp_inplace.mexw32 -------------------------------------------------------------------------------- /YIN/private/interp_inplace.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/interp_inplace.mexw64 -------------------------------------------------------------------------------- /YIN/private/mininrange.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/mininrange.dll -------------------------------------------------------------------------------- /YIN/private/mininrange.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/mininrange.mex -------------------------------------------------------------------------------- /YIN/private/mininrange.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/mininrange.mexa64 -------------------------------------------------------------------------------- /YIN/private/mininrange.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/mininrange.mexglx -------------------------------------------------------------------------------- /YIN/private/mininrange.mexmac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/mininrange.mexmac -------------------------------------------------------------------------------- /YIN/private/mininrange.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/mininrange.mexmaci -------------------------------------------------------------------------------- /YIN/private/mininrange.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/mininrange.mexmaci64 -------------------------------------------------------------------------------- /YIN/private/mininrange.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/mininrange.mexw32 -------------------------------------------------------------------------------- /YIN/private/mininrange.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/mininrange.mexw64 -------------------------------------------------------------------------------- /YIN/private/minparabolic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/minparabolic.dll -------------------------------------------------------------------------------- /YIN/private/minparabolic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/minparabolic.m -------------------------------------------------------------------------------- /YIN/private/minparabolic.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/minparabolic.mex -------------------------------------------------------------------------------- /YIN/private/minparabolic.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/minparabolic.mexa64 -------------------------------------------------------------------------------- /YIN/private/minparabolic.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/minparabolic.mexglx -------------------------------------------------------------------------------- /YIN/private/minparabolic.mexmac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/minparabolic.mexmac -------------------------------------------------------------------------------- /YIN/private/minparabolic.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/minparabolic.mexmaci -------------------------------------------------------------------------------- /YIN/private/minparabolic.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/minparabolic.mexmaci64 -------------------------------------------------------------------------------- /YIN/private/minparabolic.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/minparabolic.mexw32 -------------------------------------------------------------------------------- /YIN/private/minparabolic.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/minparabolic.mexw64 -------------------------------------------------------------------------------- /YIN/private/octave-workspace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /YIN/private/rdiff_inplace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rdiff_inplace.dll -------------------------------------------------------------------------------- /YIN/private/rdiff_inplace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rdiff_inplace.m -------------------------------------------------------------------------------- /YIN/private/rdiff_inplace.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rdiff_inplace.mex -------------------------------------------------------------------------------- /YIN/private/rdiff_inplace.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rdiff_inplace.mexa64 -------------------------------------------------------------------------------- /YIN/private/rdiff_inplace.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rdiff_inplace.mexglx -------------------------------------------------------------------------------- /YIN/private/rdiff_inplace.mexmac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rdiff_inplace.mexmac -------------------------------------------------------------------------------- /YIN/private/rdiff_inplace.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rdiff_inplace.mexmaci -------------------------------------------------------------------------------- /YIN/private/rdiff_inplace.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rdiff_inplace.mexmaci64 -------------------------------------------------------------------------------- /YIN/private/rdiff_inplace.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rdiff_inplace.mexw32 -------------------------------------------------------------------------------- /YIN/private/rdiff_inplace.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rdiff_inplace.mexw64 -------------------------------------------------------------------------------- /YIN/private/rsmooth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rsmooth.dll -------------------------------------------------------------------------------- /YIN/private/rsmooth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rsmooth.m -------------------------------------------------------------------------------- /YIN/private/rsmooth.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rsmooth.mex -------------------------------------------------------------------------------- /YIN/private/rsmooth.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rsmooth.mexa64 -------------------------------------------------------------------------------- /YIN/private/rsmooth.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rsmooth.mexglx -------------------------------------------------------------------------------- /YIN/private/rsmooth.mexmac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rsmooth.mexmac -------------------------------------------------------------------------------- /YIN/private/rsmooth.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rsmooth.mexmaci -------------------------------------------------------------------------------- /YIN/private/rsmooth.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rsmooth.mexmaci64 -------------------------------------------------------------------------------- /YIN/private/rsmooth.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rsmooth.mexw32 -------------------------------------------------------------------------------- /YIN/private/rsmooth.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rsmooth.mexw64 -------------------------------------------------------------------------------- /YIN/private/rsum_inplace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rsum_inplace.dll -------------------------------------------------------------------------------- /YIN/private/rsum_inplace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rsum_inplace.m -------------------------------------------------------------------------------- /YIN/private/rsum_inplace.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rsum_inplace.mex -------------------------------------------------------------------------------- /YIN/private/rsum_inplace.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rsum_inplace.mexa64 -------------------------------------------------------------------------------- /YIN/private/rsum_inplace.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rsum_inplace.mexglx -------------------------------------------------------------------------------- /YIN/private/rsum_inplace.mexmac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rsum_inplace.mexmac -------------------------------------------------------------------------------- /YIN/private/rsum_inplace.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rsum_inplace.mexmaci -------------------------------------------------------------------------------- /YIN/private/rsum_inplace.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rsum_inplace.mexmaci64 -------------------------------------------------------------------------------- /YIN/private/rsum_inplace.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rsum_inplace.mexw32 -------------------------------------------------------------------------------- /YIN/private/rsum_inplace.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/rsum_inplace.mexw64 -------------------------------------------------------------------------------- /YIN/private/sf_cleanup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/sf_cleanup.m -------------------------------------------------------------------------------- /YIN/private/sf_format.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/sf_format.m -------------------------------------------------------------------------------- /YIN/private/sf_info.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/sf_info.m -------------------------------------------------------------------------------- /YIN/private/sf_wave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/sf_wave.m -------------------------------------------------------------------------------- /YIN/private/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/.DS_Store -------------------------------------------------------------------------------- /YIN/private/src/cumnorm_inplace.%b5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/cumnorm_inplace.%b5 -------------------------------------------------------------------------------- /YIN/private/src/cumnorm_inplace.%b5 Data/CW Settings.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/cumnorm_inplace.%b5 Data/CW Settings.stg -------------------------------------------------------------------------------- /YIN/private/src/cumnorm_inplace.%b5 Data/FINDER.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/cumnorm_inplace.%b5 Data/FINDER.DAT -------------------------------------------------------------------------------- /YIN/private/src/cumnorm_inplace.%b5 Data/MATLAB PPC MEX-file.tdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/cumnorm_inplace.%b5 Data/MATLAB PPC MEX-file.tdt -------------------------------------------------------------------------------- /YIN/private/src/cumnorm_inplace.%b5 Data/RESOURCE.FRK/MATLAB~1.TDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/cumnorm_inplace.%b5 Data/RESOURCE.FRK/MATLAB~1.TDT -------------------------------------------------------------------------------- /YIN/private/src/cumnorm_inplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/cumnorm_inplace.c -------------------------------------------------------------------------------- /YIN/private/src/cumnorm_inplace.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/cumnorm_inplace.mexmaci64 -------------------------------------------------------------------------------- /YIN/private/src/cumnorm_inplace.prefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/cumnorm_inplace.prefix -------------------------------------------------------------------------------- /YIN/private/src/dftoperiod.%b5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/dftoperiod.%b5 -------------------------------------------------------------------------------- /YIN/private/src/dftoperiod.%b5 Data/CW Settings.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/dftoperiod.%b5 Data/CW Settings.stg -------------------------------------------------------------------------------- /YIN/private/src/dftoperiod.%b5 Data/MATLAB PPC MEX-file.tdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/dftoperiod.%b5 Data/MATLAB PPC MEX-file.tdt -------------------------------------------------------------------------------- /YIN/private/src/dftoperiod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/dftoperiod.c -------------------------------------------------------------------------------- /YIN/private/src/dftoperiod.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/dftoperiod.mexmaci64 -------------------------------------------------------------------------------- /YIN/private/src/dftoperiod.prefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/dftoperiod.prefix -------------------------------------------------------------------------------- /YIN/private/src/dftoperiod2.%b5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/dftoperiod2.%b5 -------------------------------------------------------------------------------- /YIN/private/src/dftoperiod2.%b5 Data/CW Settings.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/dftoperiod2.%b5 Data/CW Settings.stg -------------------------------------------------------------------------------- /YIN/private/src/dftoperiod2.%b5 Data/MATLAB PPC MEX-file.tdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/dftoperiod2.%b5 Data/MATLAB PPC MEX-file.tdt -------------------------------------------------------------------------------- /YIN/private/src/dftoperiod2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/dftoperiod2.c -------------------------------------------------------------------------------- /YIN/private/src/dftoperiod2.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/dftoperiod2.mexmaci64 -------------------------------------------------------------------------------- /YIN/private/src/dftoperiod2.prefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/dftoperiod2.prefix -------------------------------------------------------------------------------- /YIN/private/src/interp_inplace.%b5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/interp_inplace.%b5 -------------------------------------------------------------------------------- /YIN/private/src/interp_inplace.%b5 Data/CW Settings.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/interp_inplace.%b5 Data/CW Settings.stg -------------------------------------------------------------------------------- /YIN/private/src/interp_inplace.%b5 Data/FINDER.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/interp_inplace.%b5 Data/FINDER.DAT -------------------------------------------------------------------------------- /YIN/private/src/interp_inplace.%b5 Data/MATLAB PPC MEX-file.tdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/interp_inplace.%b5 Data/MATLAB PPC MEX-file.tdt -------------------------------------------------------------------------------- /YIN/private/src/interp_inplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/interp_inplace.c -------------------------------------------------------------------------------- /YIN/private/src/interp_inplace.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/interp_inplace.mexmaci64 -------------------------------------------------------------------------------- /YIN/private/src/interp_inplace.prefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/interp_inplace.prefix -------------------------------------------------------------------------------- /YIN/private/src/mininrange.%b5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/mininrange.%b5 -------------------------------------------------------------------------------- /YIN/private/src/mininrange.%b5 Data/CW Settings.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/mininrange.%b5 Data/CW Settings.stg -------------------------------------------------------------------------------- /YIN/private/src/mininrange.%b5 Data/MATLAB PPC MEX-file.tdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/mininrange.%b5 Data/MATLAB PPC MEX-file.tdt -------------------------------------------------------------------------------- /YIN/private/src/mininrange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/mininrange.c -------------------------------------------------------------------------------- /YIN/private/src/mininrange.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/mininrange.mexmaci64 -------------------------------------------------------------------------------- /YIN/private/src/mininrange.prefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/mininrange.prefix -------------------------------------------------------------------------------- /YIN/private/src/minparabolic.%b5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/minparabolic.%b5 -------------------------------------------------------------------------------- /YIN/private/src/minparabolic.%b5 Data/CW Settings.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/minparabolic.%b5 Data/CW Settings.stg -------------------------------------------------------------------------------- /YIN/private/src/minparabolic.%b5 Data/FINDER.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/minparabolic.%b5 Data/FINDER.DAT -------------------------------------------------------------------------------- /YIN/private/src/minparabolic.%b5 Data/MATLAB PPC MEX-file.tdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/minparabolic.%b5 Data/MATLAB PPC MEX-file.tdt -------------------------------------------------------------------------------- /YIN/private/src/minparabolic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/minparabolic.c -------------------------------------------------------------------------------- /YIN/private/src/minparabolic.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/minparabolic.mexmaci64 -------------------------------------------------------------------------------- /YIN/private/src/minparabolic.prefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/minparabolic.prefix -------------------------------------------------------------------------------- /YIN/private/src/mwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/mwrap.h -------------------------------------------------------------------------------- /YIN/private/src/mwrap.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/mwrap.o -------------------------------------------------------------------------------- /YIN/private/src/mwrap_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/mwrap_check.h -------------------------------------------------------------------------------- /YIN/private/src/rdiff_inplace.%b5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rdiff_inplace.%b5 -------------------------------------------------------------------------------- /YIN/private/src/rdiff_inplace.%b5 Data/CW Settings.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rdiff_inplace.%b5 Data/CW Settings.stg -------------------------------------------------------------------------------- /YIN/private/src/rdiff_inplace.%b5 Data/FINDER.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rdiff_inplace.%b5 Data/FINDER.DAT -------------------------------------------------------------------------------- /YIN/private/src/rdiff_inplace.%b5 Data/MATLAB PPC MEX-file.tdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rdiff_inplace.%b5 Data/MATLAB PPC MEX-file.tdt -------------------------------------------------------------------------------- /YIN/private/src/rdiff_inplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rdiff_inplace.c -------------------------------------------------------------------------------- /YIN/private/src/rdiff_inplace.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rdiff_inplace.mex -------------------------------------------------------------------------------- /YIN/private/src/rdiff_inplace.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rdiff_inplace.mexmaci64 -------------------------------------------------------------------------------- /YIN/private/src/rdiff_inplace.prefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rdiff_inplace.prefix -------------------------------------------------------------------------------- /YIN/private/src/rsmooth.%b5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rsmooth.%b5 -------------------------------------------------------------------------------- /YIN/private/src/rsmooth.%b5 Data/CW Settings.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rsmooth.%b5 Data/CW Settings.stg -------------------------------------------------------------------------------- /YIN/private/src/rsmooth.%b5 Data/MATLAB PPC MEX-file.tdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rsmooth.%b5 Data/MATLAB PPC MEX-file.tdt -------------------------------------------------------------------------------- /YIN/private/src/rsmooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rsmooth.c -------------------------------------------------------------------------------- /YIN/private/src/rsmooth.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rsmooth.mexmaci64 -------------------------------------------------------------------------------- /YIN/private/src/rsmooth.prefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rsmooth.prefix -------------------------------------------------------------------------------- /YIN/private/src/rsum_inplace.%b5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rsum_inplace.%b5 -------------------------------------------------------------------------------- /YIN/private/src/rsum_inplace.%b5 Data/CW Settings.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rsum_inplace.%b5 Data/CW Settings.stg -------------------------------------------------------------------------------- /YIN/private/src/rsum_inplace.%b5 Data/FINDER.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rsum_inplace.%b5 Data/FINDER.DAT -------------------------------------------------------------------------------- /YIN/private/src/rsum_inplace.%b5 Data/MATLAB PPC MEX-file.tdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rsum_inplace.%b5 Data/MATLAB PPC MEX-file.tdt -------------------------------------------------------------------------------- /YIN/private/src/rsum_inplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rsum_inplace.c -------------------------------------------------------------------------------- /YIN/private/src/rsum_inplace.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rsum_inplace.mex -------------------------------------------------------------------------------- /YIN/private/src/rsum_inplace.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rsum_inplace.mexmaci64 -------------------------------------------------------------------------------- /YIN/private/src/rsum_inplace.prefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/src/rsum_inplace.prefix -------------------------------------------------------------------------------- /YIN/private/yink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/private/yink.m -------------------------------------------------------------------------------- /YIN/testyin.m: -------------------------------------------------------------------------------- 1 | % test YIN 2 | 3 | yin 'clarinet.au' 4 | -------------------------------------------------------------------------------- /YIN/yin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/yin.html -------------------------------------------------------------------------------- /YIN/yin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/yin.m -------------------------------------------------------------------------------- /YIN/yin2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/YIN/yin2.m -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/helper.py -------------------------------------------------------------------------------- /import_ptdb_tug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/import_ptdb_tug.py -------------------------------------------------------------------------------- /import_qut_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/import_qut_noise.py -------------------------------------------------------------------------------- /maps_f0.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/maps_f0.jl -------------------------------------------------------------------------------- /maps_f0.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/maps_f0.m -------------------------------------------------------------------------------- /maps_f0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/maps_f0.py -------------------------------------------------------------------------------- /pdas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastibe/MAPS-Scripts/HEAD/pdas.py --------------------------------------------------------------------------------