├── .gitignore ├── LICENSE ├── README.md ├── demo_all.m ├── demo_generate_data.m ├── demo_piv.m ├── demo_pwdsrp.m ├── demo_sspiv.m ├── est_doas_piv.m ├── est_doas_pwdsrp.m ├── est_doas_sspiv.m ├── example_audio ├── F1s3.wav ├── F3s3.wav └── M9s3.wav ├── setup_paths.m └── src ├── az_inc_bin_distances.m ├── cartnorm.m ├── define_eigenmike.m ├── distcos.m ├── freqspan2bins.m ├── minTruncationOrder.m ├── modeStrength.m ├── mycart2sph.m ├── mysph2cart.m ├── normalise.m ├── override_valid_fields.m ├── piv.m ├── piv_hist.m ├── plot_2D_map_with_est_gt_doa.m ├── plot_az_inc.m ├── setup_piv_sspiv.m ├── setup_spherical_toolbox.m ├── sh_valid_frequency_bins.m ├── sht.m ├── smooth_histogram_pd.m ├── sphBasis.m ├── sphDist.m ├── sph_local_peaks_to_doa_vecs_with_peak_vals.m ├── spherical_find_local_maxima.m ├── sspiv1.m ├── stft.m ├── svd_for_cells.m ├── tf_smoothed_covariance.m └── timespan2frames.m /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/README.md -------------------------------------------------------------------------------- /demo_all.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/demo_all.m -------------------------------------------------------------------------------- /demo_generate_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/demo_generate_data.m -------------------------------------------------------------------------------- /demo_piv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/demo_piv.m -------------------------------------------------------------------------------- /demo_pwdsrp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/demo_pwdsrp.m -------------------------------------------------------------------------------- /demo_sspiv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/demo_sspiv.m -------------------------------------------------------------------------------- /est_doas_piv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/est_doas_piv.m -------------------------------------------------------------------------------- /est_doas_pwdsrp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/est_doas_pwdsrp.m -------------------------------------------------------------------------------- /est_doas_sspiv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/est_doas_sspiv.m -------------------------------------------------------------------------------- /example_audio/F1s3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/example_audio/F1s3.wav -------------------------------------------------------------------------------- /example_audio/F3s3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/example_audio/F3s3.wav -------------------------------------------------------------------------------- /example_audio/M9s3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/example_audio/M9s3.wav -------------------------------------------------------------------------------- /setup_paths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/setup_paths.m -------------------------------------------------------------------------------- /src/az_inc_bin_distances.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/az_inc_bin_distances.m -------------------------------------------------------------------------------- /src/cartnorm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/cartnorm.m -------------------------------------------------------------------------------- /src/define_eigenmike.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/define_eigenmike.m -------------------------------------------------------------------------------- /src/distcos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/distcos.m -------------------------------------------------------------------------------- /src/freqspan2bins.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/freqspan2bins.m -------------------------------------------------------------------------------- /src/minTruncationOrder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/minTruncationOrder.m -------------------------------------------------------------------------------- /src/modeStrength.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/modeStrength.m -------------------------------------------------------------------------------- /src/mycart2sph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/mycart2sph.m -------------------------------------------------------------------------------- /src/mysph2cart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/mysph2cart.m -------------------------------------------------------------------------------- /src/normalise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/normalise.m -------------------------------------------------------------------------------- /src/override_valid_fields.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/override_valid_fields.m -------------------------------------------------------------------------------- /src/piv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/piv.m -------------------------------------------------------------------------------- /src/piv_hist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/piv_hist.m -------------------------------------------------------------------------------- /src/plot_2D_map_with_est_gt_doa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/plot_2D_map_with_est_gt_doa.m -------------------------------------------------------------------------------- /src/plot_az_inc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/plot_az_inc.m -------------------------------------------------------------------------------- /src/setup_piv_sspiv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/setup_piv_sspiv.m -------------------------------------------------------------------------------- /src/setup_spherical_toolbox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/setup_spherical_toolbox.m -------------------------------------------------------------------------------- /src/sh_valid_frequency_bins.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/sh_valid_frequency_bins.m -------------------------------------------------------------------------------- /src/sht.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/sht.m -------------------------------------------------------------------------------- /src/smooth_histogram_pd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/smooth_histogram_pd.m -------------------------------------------------------------------------------- /src/sphBasis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/sphBasis.m -------------------------------------------------------------------------------- /src/sphDist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/sphDist.m -------------------------------------------------------------------------------- /src/sph_local_peaks_to_doa_vecs_with_peak_vals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/sph_local_peaks_to_doa_vecs_with_peak_vals.m -------------------------------------------------------------------------------- /src/spherical_find_local_maxima.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/spherical_find_local_maxima.m -------------------------------------------------------------------------------- /src/sspiv1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/sspiv1.m -------------------------------------------------------------------------------- /src/stft.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/stft.m -------------------------------------------------------------------------------- /src/svd_for_cells.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/svd_for_cells.m -------------------------------------------------------------------------------- /src/tf_smoothed_covariance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/tf_smoothed_covariance.m -------------------------------------------------------------------------------- /src/timespan2frames.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/sap-sh-doa-estimation/HEAD/src/timespan2frames.m --------------------------------------------------------------------------------