├── .gitattributes ├── .gitignore ├── GSC.m ├── Leer_Array_Signals.m ├── PESQ ├── DC_block.m ├── FFTNXCorr.m ├── addnoise_asl.asv ├── addnoise_asl.m ├── apply_VAD.asv ├── apply_VAD.m ├── apply_filter.asv ├── apply_filter.m ├── apply_filters.m ├── comp_cep.asv ├── comp_cep.m ├── comp_fwseg.asv ├── comp_fwseg.m ├── comp_fwseg_mars.asv ├── comp_fwseg_mars.m ├── comp_fwseg_variant.asv ├── comp_fwseg_variant.m ├── comp_is.asv ├── comp_is.m ├── comp_llr.asv ├── comp_llr.m ├── comp_snr.asv ├── comp_snr.m ├── comp_wss.asv ├── comp_wss.m ├── composite.asv ├── composite.m ├── crude_align.m ├── enhanced.wav ├── fix_power_level.asv ├── fix_power_level.m ├── id_searchwindows.m ├── id_utterances.m ├── input_filter.m ├── pesq.asv ├── pesq.m ├── pesq_psychoacoustic_model.asv ├── pesq_psychoacoustic_model.m ├── pow_of.m ├── readme.pdf ├── readme.txt ├── setup_global.m ├── sp04.wav ├── sp04_babble_sn10.wav ├── split_align.m ├── time_align.m ├── utterance_locate.m ├── utterance_split.m ├── wavread.m └── white_noise.wav ├── RETO2016_README.txt ├── RETO2016_TOOLS └── signals │ ├── README_Acquisition │ ├── an101-mtms-arr4A.adc │ ├── an102-mtms-arr4A.adc │ ├── an103-mtms-arr4A.adc │ ├── an103-mtms-senn4.adc │ ├── an104-mtms-arr4A.adc │ └── an105-mtms-arr4A.adc ├── ResumenResultados.xlsx ├── array.wav ├── asdf.wav ├── image_2017-02-16_15-18-08.png ├── limpia.wav ├── lms_eq.m ├── offsetcomp.m └── steering_vector.mat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/.gitignore -------------------------------------------------------------------------------- /GSC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/GSC.m -------------------------------------------------------------------------------- /Leer_Array_Signals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/Leer_Array_Signals.m -------------------------------------------------------------------------------- /PESQ/DC_block.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/DC_block.m -------------------------------------------------------------------------------- /PESQ/FFTNXCorr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/FFTNXCorr.m -------------------------------------------------------------------------------- /PESQ/addnoise_asl.asv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/addnoise_asl.asv -------------------------------------------------------------------------------- /PESQ/addnoise_asl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/addnoise_asl.m -------------------------------------------------------------------------------- /PESQ/apply_VAD.asv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/apply_VAD.asv -------------------------------------------------------------------------------- /PESQ/apply_VAD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/apply_VAD.m -------------------------------------------------------------------------------- /PESQ/apply_filter.asv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/apply_filter.asv -------------------------------------------------------------------------------- /PESQ/apply_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/apply_filter.m -------------------------------------------------------------------------------- /PESQ/apply_filters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/apply_filters.m -------------------------------------------------------------------------------- /PESQ/comp_cep.asv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/comp_cep.asv -------------------------------------------------------------------------------- /PESQ/comp_cep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/comp_cep.m -------------------------------------------------------------------------------- /PESQ/comp_fwseg.asv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/comp_fwseg.asv -------------------------------------------------------------------------------- /PESQ/comp_fwseg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/comp_fwseg.m -------------------------------------------------------------------------------- /PESQ/comp_fwseg_mars.asv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/comp_fwseg_mars.asv -------------------------------------------------------------------------------- /PESQ/comp_fwseg_mars.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/comp_fwseg_mars.m -------------------------------------------------------------------------------- /PESQ/comp_fwseg_variant.asv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/comp_fwseg_variant.asv -------------------------------------------------------------------------------- /PESQ/comp_fwseg_variant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/comp_fwseg_variant.m -------------------------------------------------------------------------------- /PESQ/comp_is.asv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/comp_is.asv -------------------------------------------------------------------------------- /PESQ/comp_is.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/comp_is.m -------------------------------------------------------------------------------- /PESQ/comp_llr.asv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/comp_llr.asv -------------------------------------------------------------------------------- /PESQ/comp_llr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/comp_llr.m -------------------------------------------------------------------------------- /PESQ/comp_snr.asv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/comp_snr.asv -------------------------------------------------------------------------------- /PESQ/comp_snr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/comp_snr.m -------------------------------------------------------------------------------- /PESQ/comp_wss.asv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/comp_wss.asv -------------------------------------------------------------------------------- /PESQ/comp_wss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/comp_wss.m -------------------------------------------------------------------------------- /PESQ/composite.asv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/composite.asv -------------------------------------------------------------------------------- /PESQ/composite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/composite.m -------------------------------------------------------------------------------- /PESQ/crude_align.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/crude_align.m -------------------------------------------------------------------------------- /PESQ/enhanced.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/enhanced.wav -------------------------------------------------------------------------------- /PESQ/fix_power_level.asv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/fix_power_level.asv -------------------------------------------------------------------------------- /PESQ/fix_power_level.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/fix_power_level.m -------------------------------------------------------------------------------- /PESQ/id_searchwindows.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/id_searchwindows.m -------------------------------------------------------------------------------- /PESQ/id_utterances.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/id_utterances.m -------------------------------------------------------------------------------- /PESQ/input_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/input_filter.m -------------------------------------------------------------------------------- /PESQ/pesq.asv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/pesq.asv -------------------------------------------------------------------------------- /PESQ/pesq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/pesq.m -------------------------------------------------------------------------------- /PESQ/pesq_psychoacoustic_model.asv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/pesq_psychoacoustic_model.asv -------------------------------------------------------------------------------- /PESQ/pesq_psychoacoustic_model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/pesq_psychoacoustic_model.m -------------------------------------------------------------------------------- /PESQ/pow_of.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/pow_of.m -------------------------------------------------------------------------------- /PESQ/readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/readme.pdf -------------------------------------------------------------------------------- /PESQ/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/readme.txt -------------------------------------------------------------------------------- /PESQ/setup_global.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/setup_global.m -------------------------------------------------------------------------------- /PESQ/sp04.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/sp04.wav -------------------------------------------------------------------------------- /PESQ/sp04_babble_sn10.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/sp04_babble_sn10.wav -------------------------------------------------------------------------------- /PESQ/split_align.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/split_align.m -------------------------------------------------------------------------------- /PESQ/time_align.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/time_align.m -------------------------------------------------------------------------------- /PESQ/utterance_locate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/utterance_locate.m -------------------------------------------------------------------------------- /PESQ/utterance_split.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/utterance_split.m -------------------------------------------------------------------------------- /PESQ/wavread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/wavread.m -------------------------------------------------------------------------------- /PESQ/white_noise.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/PESQ/white_noise.wav -------------------------------------------------------------------------------- /RETO2016_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/RETO2016_README.txt -------------------------------------------------------------------------------- /RETO2016_TOOLS/signals/README_Acquisition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/RETO2016_TOOLS/signals/README_Acquisition -------------------------------------------------------------------------------- /RETO2016_TOOLS/signals/an101-mtms-arr4A.adc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/RETO2016_TOOLS/signals/an101-mtms-arr4A.adc -------------------------------------------------------------------------------- /RETO2016_TOOLS/signals/an102-mtms-arr4A.adc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/RETO2016_TOOLS/signals/an102-mtms-arr4A.adc -------------------------------------------------------------------------------- /RETO2016_TOOLS/signals/an103-mtms-arr4A.adc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/RETO2016_TOOLS/signals/an103-mtms-arr4A.adc -------------------------------------------------------------------------------- /RETO2016_TOOLS/signals/an103-mtms-senn4.adc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/RETO2016_TOOLS/signals/an103-mtms-senn4.adc -------------------------------------------------------------------------------- /RETO2016_TOOLS/signals/an104-mtms-arr4A.adc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/RETO2016_TOOLS/signals/an104-mtms-arr4A.adc -------------------------------------------------------------------------------- /RETO2016_TOOLS/signals/an105-mtms-arr4A.adc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/RETO2016_TOOLS/signals/an105-mtms-arr4A.adc -------------------------------------------------------------------------------- /ResumenResultados.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/ResumenResultados.xlsx -------------------------------------------------------------------------------- /array.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/array.wav -------------------------------------------------------------------------------- /asdf.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/asdf.wav -------------------------------------------------------------------------------- /image_2017-02-16_15-18-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/image_2017-02-16_15-18-08.png -------------------------------------------------------------------------------- /limpia.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/limpia.wav -------------------------------------------------------------------------------- /lms_eq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/lms_eq.m -------------------------------------------------------------------------------- /offsetcomp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/offsetcomp.m -------------------------------------------------------------------------------- /steering_vector.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgarciagimenez/GSC_beamforming/HEAD/steering_vector.mat --------------------------------------------------------------------------------