├── .gitignore ├── LICENSE ├── README.md ├── babble_8kHz.wav ├── example.m ├── example_babble.m └── functions ├── balanced.m ├── balanced_preserving_smoothness.m ├── evaluate_mixing_matrix.m ├── generate_target_coherence.m ├── istft.m ├── mccoherence.m ├── mix_signals.m ├── mixing_matrix.m ├── procrustes.m ├── smoothness.m └── stft.m /.gitignore: -------------------------------------------------------------------------------- 1 | mc_babble_speech_example.wav 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehabets/ANF-Generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehabets/ANF-Generator/HEAD/README.md -------------------------------------------------------------------------------- /babble_8kHz.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehabets/ANF-Generator/HEAD/babble_8kHz.wav -------------------------------------------------------------------------------- /example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehabets/ANF-Generator/HEAD/example.m -------------------------------------------------------------------------------- /example_babble.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehabets/ANF-Generator/HEAD/example_babble.m -------------------------------------------------------------------------------- /functions/balanced.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehabets/ANF-Generator/HEAD/functions/balanced.m -------------------------------------------------------------------------------- /functions/balanced_preserving_smoothness.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehabets/ANF-Generator/HEAD/functions/balanced_preserving_smoothness.m -------------------------------------------------------------------------------- /functions/evaluate_mixing_matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehabets/ANF-Generator/HEAD/functions/evaluate_mixing_matrix.m -------------------------------------------------------------------------------- /functions/generate_target_coherence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehabets/ANF-Generator/HEAD/functions/generate_target_coherence.m -------------------------------------------------------------------------------- /functions/istft.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehabets/ANF-Generator/HEAD/functions/istft.m -------------------------------------------------------------------------------- /functions/mccoherence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehabets/ANF-Generator/HEAD/functions/mccoherence.m -------------------------------------------------------------------------------- /functions/mix_signals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehabets/ANF-Generator/HEAD/functions/mix_signals.m -------------------------------------------------------------------------------- /functions/mixing_matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehabets/ANF-Generator/HEAD/functions/mixing_matrix.m -------------------------------------------------------------------------------- /functions/procrustes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehabets/ANF-Generator/HEAD/functions/procrustes.m -------------------------------------------------------------------------------- /functions/smoothness.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehabets/ANF-Generator/HEAD/functions/smoothness.m -------------------------------------------------------------------------------- /functions/stft.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehabets/ANF-Generator/HEAD/functions/stft.m --------------------------------------------------------------------------------