├── .gitignore ├── README.md ├── Yousefian ├── COH_RealImag.m └── ReIm_Coherence.m ├── applyProcess_real.m ├── applyProcess_sim.m ├── applyProcess_simSNR.m ├── getweights.m ├── lib ├── +file │ └── find_pcm.m ├── +sim │ ├── ANF-Generator-master │ │ ├── LICENSE │ │ ├── README.md │ │ ├── babble_8kHz.wav │ │ ├── biorwin.m │ │ ├── cohere_mod.m │ │ ├── gen_noisefield.m │ │ ├── istft.m │ │ ├── mix_signals.m │ │ ├── stft.m │ │ └── 音轨-2.wav │ ├── RIR_generator_URA.m │ ├── gen_babble_speech.m │ ├── generate_signal.m │ ├── noise_gen_URA.m │ └── signal_simulation.m ├── +util │ ├── fig.m │ ├── play.m │ ├── plot.m │ └── visual.m ├── GenNoiseMSC.m ├── GenNoiseMSC_shift.m ├── istft.m ├── mycohere.m ├── patternURA.m ├── spectral_subtraction.m ├── stft.m ├── stft_test.m ├── update_CSD.m ├── update_MSC.m └── update_PSD.m ├── plotSNR.m ├── process.m ├── process_SNR.m └── wav ├── COH_CT_90.wav ├── STEREO_0024.pcm ├── S_01_01.wav ├── S_01_01_rec.wav ├── S_72_09.wav ├── Unp_Front_CT_90.wav ├── Unp_Rear_CT_90.wav └── xmos ├── rec ├── readme.txt ├── 音轨-2.wav ├── 音轨-3.wav ├── 音轨-4.wav └── 音轨-5.wav └── rec96 ├── readme.txt ├── 音轨-2.wav ├── 音轨-3.wav ├── 音轨-4.wav └── 音轨-5.wav /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/README.md -------------------------------------------------------------------------------- /Yousefian/COH_RealImag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/Yousefian/COH_RealImag.m -------------------------------------------------------------------------------- /Yousefian/ReIm_Coherence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/Yousefian/ReIm_Coherence.m -------------------------------------------------------------------------------- /applyProcess_real.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/applyProcess_real.m -------------------------------------------------------------------------------- /applyProcess_sim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/applyProcess_sim.m -------------------------------------------------------------------------------- /applyProcess_simSNR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/applyProcess_simSNR.m -------------------------------------------------------------------------------- /getweights.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/getweights.m -------------------------------------------------------------------------------- /lib/+file/find_pcm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/+file/find_pcm.m -------------------------------------------------------------------------------- /lib/+sim/ANF-Generator-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/+sim/ANF-Generator-master/LICENSE -------------------------------------------------------------------------------- /lib/+sim/ANF-Generator-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/+sim/ANF-Generator-master/README.md -------------------------------------------------------------------------------- /lib/+sim/ANF-Generator-master/babble_8kHz.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/+sim/ANF-Generator-master/babble_8kHz.wav -------------------------------------------------------------------------------- /lib/+sim/ANF-Generator-master/biorwin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/+sim/ANF-Generator-master/biorwin.m -------------------------------------------------------------------------------- /lib/+sim/ANF-Generator-master/cohere_mod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/+sim/ANF-Generator-master/cohere_mod.m -------------------------------------------------------------------------------- /lib/+sim/ANF-Generator-master/gen_noisefield.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/+sim/ANF-Generator-master/gen_noisefield.m -------------------------------------------------------------------------------- /lib/+sim/ANF-Generator-master/istft.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/+sim/ANF-Generator-master/istft.m -------------------------------------------------------------------------------- /lib/+sim/ANF-Generator-master/mix_signals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/+sim/ANF-Generator-master/mix_signals.m -------------------------------------------------------------------------------- /lib/+sim/ANF-Generator-master/stft.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/+sim/ANF-Generator-master/stft.m -------------------------------------------------------------------------------- /lib/+sim/ANF-Generator-master/音轨-2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/+sim/ANF-Generator-master/音轨-2.wav -------------------------------------------------------------------------------- /lib/+sim/RIR_generator_URA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/+sim/RIR_generator_URA.m -------------------------------------------------------------------------------- /lib/+sim/gen_babble_speech.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/+sim/gen_babble_speech.m -------------------------------------------------------------------------------- /lib/+sim/generate_signal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/+sim/generate_signal.m -------------------------------------------------------------------------------- /lib/+sim/noise_gen_URA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/+sim/noise_gen_URA.m -------------------------------------------------------------------------------- /lib/+sim/signal_simulation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/+sim/signal_simulation.m -------------------------------------------------------------------------------- /lib/+util/fig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/+util/fig.m -------------------------------------------------------------------------------- /lib/+util/play.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/+util/play.m -------------------------------------------------------------------------------- /lib/+util/plot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/+util/plot.m -------------------------------------------------------------------------------- /lib/+util/visual.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/+util/visual.m -------------------------------------------------------------------------------- /lib/GenNoiseMSC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/GenNoiseMSC.m -------------------------------------------------------------------------------- /lib/GenNoiseMSC_shift.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/GenNoiseMSC_shift.m -------------------------------------------------------------------------------- /lib/istft.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/istft.m -------------------------------------------------------------------------------- /lib/mycohere.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/mycohere.m -------------------------------------------------------------------------------- /lib/patternURA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/patternURA.m -------------------------------------------------------------------------------- /lib/spectral_subtraction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/spectral_subtraction.m -------------------------------------------------------------------------------- /lib/stft.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/stft.m -------------------------------------------------------------------------------- /lib/stft_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/stft_test.m -------------------------------------------------------------------------------- /lib/update_CSD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/update_CSD.m -------------------------------------------------------------------------------- /lib/update_MSC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/update_MSC.m -------------------------------------------------------------------------------- /lib/update_PSD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/lib/update_PSD.m -------------------------------------------------------------------------------- /plotSNR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/plotSNR.m -------------------------------------------------------------------------------- /process.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/process.m -------------------------------------------------------------------------------- /process_SNR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/process_SNR.m -------------------------------------------------------------------------------- /wav/COH_CT_90.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/wav/COH_CT_90.wav -------------------------------------------------------------------------------- /wav/STEREO_0024.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/wav/STEREO_0024.pcm -------------------------------------------------------------------------------- /wav/S_01_01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/wav/S_01_01.wav -------------------------------------------------------------------------------- /wav/S_01_01_rec.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/wav/S_01_01_rec.wav -------------------------------------------------------------------------------- /wav/S_72_09.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/wav/S_72_09.wav -------------------------------------------------------------------------------- /wav/Unp_Front_CT_90.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/wav/Unp_Front_CT_90.wav -------------------------------------------------------------------------------- /wav/Unp_Rear_CT_90.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/wav/Unp_Rear_CT_90.wav -------------------------------------------------------------------------------- /wav/xmos/rec/readme.txt: -------------------------------------------------------------------------------- 1 | target:0 2 | interf:270 -------------------------------------------------------------------------------- /wav/xmos/rec/音轨-2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/wav/xmos/rec/音轨-2.wav -------------------------------------------------------------------------------- /wav/xmos/rec/音轨-3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/wav/xmos/rec/音轨-3.wav -------------------------------------------------------------------------------- /wav/xmos/rec/音轨-4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/wav/xmos/rec/音轨-4.wav -------------------------------------------------------------------------------- /wav/xmos/rec/音轨-5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/wav/xmos/rec/音轨-5.wav -------------------------------------------------------------------------------- /wav/xmos/rec96/readme.txt: -------------------------------------------------------------------------------- 1 | target:0 2 | inferf:270 -------------------------------------------------------------------------------- /wav/xmos/rec96/音轨-2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/wav/xmos/rec96/音轨-2.wav -------------------------------------------------------------------------------- /wav/xmos/rec96/音轨-3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/wav/xmos/rec96/音轨-3.wav -------------------------------------------------------------------------------- /wav/xmos/rec96/音轨-4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/wav/xmos/rec96/音轨-4.wav -------------------------------------------------------------------------------- /wav/xmos/rec96/音轨-5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwei2009/coherence/HEAD/wav/xmos/rec96/音轨-5.wav --------------------------------------------------------------------------------