├── .gitignore ├── .zenodo.json ├── CONTRIBUTING.rst ├── LICENSE ├── NEWS ├── README.rst ├── SFS_HRTF_extrapolation └── extrapolate_farfield_hrtfset.m ├── SFS_analysis ├── freq_response_line_source.m ├── freq_response_localwfs_sbl.m ├── freq_response_localwfs_vss.m ├── freq_response_nfchoa.m ├── freq_response_point_source.m ├── freq_response_wfs.m ├── time_response_line_source.m ├── time_response_localwfs_sbl.m ├── time_response_localwfs_vss.m ├── time_response_nfchoa.m ├── time_response_point_source.m ├── time_response_wfs.m └── wave_fronts_wfs.m ├── SFS_binaural_synthesis ├── auralize_ir.m ├── compensate_headphone.m ├── ir_generic.m ├── ir_localwfs.m ├── ir_nfchoa.m ├── ir_point_source.m └── ir_wfs.m ├── SFS_config.m ├── SFS_general ├── aliasing_frequency.m ├── asslegendre.m ├── bandpass.m ├── bilinear_transform.m ├── check_dimensionality.m ├── cm2in.m ├── cm2px.m ├── column_vector.m ├── convolution.m ├── correct_azimuth.m ├── correct_elevation.m ├── deg.m ├── delayline.m ├── direction_vector.m ├── download_file.m ├── findcols.m ├── findconvexcone.m ├── findnearestneighbour.m ├── findrows.m ├── findvoronoi.m ├── fix_length.m ├── gaindb.m ├── general_least_squares.m ├── get_shelve_lagrange.m ├── get_spherical_grid.m ├── hann_window.m ├── in2cm.m ├── in2px.m ├── inverse_cht.m ├── inverse_lt.m ├── is_dim_custom.m ├── is_dim_singleton.m ├── iseven.m ├── ismonoinc.m ├── isodd.m ├── lagrange_filter.m ├── legpts.m ├── linkwitz_riley.m ├── modal_weighting.m ├── nfchoa_order.m ├── norm_signal.m ├── pm_filter.m ├── px2cm.m ├── px2in.m ├── rad.m ├── rotation_matrix.m ├── rounded_box.m ├── row_vector.m ├── savewav.m ├── secondary_source_diameter.m ├── secondary_source_distance.m ├── secondary_source_positions.m ├── secondary_source_selection.m ├── secondary_source_tapering.m ├── signal_from_spectrum.m ├── spectrum_from_signal.m ├── sphbesselh.m ├── sphbesselh_zeros.m ├── sphbesselj.m ├── sphbessely.m ├── sphharmonics.m ├── tapering_window.m ├── thiran_filter.m ├── vector_norm.m ├── vector_product.m ├── virtual_secondary_source_positions.m ├── warning_if_zero.m ├── weights_for_points_on_a_sphere_rectangle.m ├── xyz_axes_selection.m └── xyz_grid.m ├── SFS_helper ├── get_position_and_orientation_ls.m ├── get_sfs_path.m ├── isargchar.m ├── isargcoord.m ├── isargdir.m ├── isargequallength.m ├── isargequalsize.m ├── isargfile.m ├── isargmatrix.m ├── isargnegativescalar.m ├── isargnumeric.m ├── isargposition.m ├── isargpositivescalar.m ├── isargscalar.m ├── isargsecondarysource.m ├── isargstruct.m ├── isargvector.m ├── isargxs.m ├── isoctave.m ├── iswindows.m ├── progress_bar.m └── to_be_implemented.m ├── SFS_ir ├── dummy_irs.m ├── get_ir.m ├── interpolate_ir.m ├── ir_correct_distance.m ├── reduce_ir.m ├── shorten_ir.m ├── sofa2brs.m ├── sofa_get_data_fir.m ├── sofa_get_data_fire.m ├── sofa_get_head_orientations.m ├── sofa_get_header.m ├── sofa_get_listener_position.m ├── sofa_get_secondary_sources.m └── sofa_is_file.m ├── SFS_monochromatic ├── circexp_mono │ ├── circexp_mono_ps.m │ └── circexp_mono_pw.m ├── driving_function_mono_localwfs_sbl.m ├── driving_function_mono_localwfs_vss.m ├── driving_function_mono_nfchoa.m ├── driving_function_mono_sdm.m ├── driving_function_mono_sdm_kx.m ├── driving_function_mono_wfs.m ├── driving_functions_mono │ ├── driving_function_mono_localwfs_sbl_ps.m │ ├── driving_function_mono_localwfs_sbl_pw.m │ ├── driving_function_mono_nfchoa_fs.m │ ├── driving_function_mono_nfchoa_ls.m │ ├── driving_function_mono_nfchoa_ps.m │ ├── driving_function_mono_nfchoa_pw.m │ ├── driving_function_mono_sdm_fs.m │ ├── driving_function_mono_sdm_kx_fs.m │ ├── driving_function_mono_sdm_kx_ls.m │ ├── driving_function_mono_sdm_kx_ps.m │ ├── driving_function_mono_sdm_kx_pw.m │ ├── driving_function_mono_sdm_ls.m │ ├── driving_function_mono_sdm_ps.m │ ├── driving_function_mono_sdm_pw.m │ ├── driving_function_mono_wfs_fs.m │ ├── driving_function_mono_wfs_ls.m │ ├── driving_function_mono_wfs_ps.m │ ├── driving_function_mono_wfs_pw.m │ ├── driving_function_mono_wfs_pwd.m │ └── driving_function_mono_wfs_vss.m ├── greens_function_mono.m ├── movie_sound_field_mono_wfs.m ├── pwd_mono │ └── pwd_mono_circexp.m ├── sound_field_mono.m ├── sound_field_mono_line_source.m ├── sound_field_mono_localwfs_sbl.m ├── sound_field_mono_localwfs_vss.m ├── sound_field_mono_nfchoa.m ├── sound_field_mono_plane_wave.m ├── sound_field_mono_point_source.m ├── sound_field_mono_sdm.m ├── sound_field_mono_sdm_kx.m └── sound_field_mono_wfs.m ├── SFS_octave ├── README.txt ├── db.m └── rms.m ├── SFS_plotting ├── colormaps │ ├── inferno.m │ ├── magma.m │ ├── moreland.m │ └── yellowred.m ├── draw_loudspeakers.m ├── figsize.m ├── generate_colormap.m ├── generate_movie.m ├── gp_draw_loudspeakers.gnu ├── gp_load.m ├── gp_save.m ├── gp_save_loudspeakers.m ├── gp_save_matrix.m ├── gp_set_head.gnu ├── gp_set_loudspeaker.gnu ├── norm_sound_field.m ├── plot_sound_field.m ├── print_eps.m ├── print_png.m ├── set_colorbar.m ├── set_colormap.m ├── set_font_size.m ├── set_font_type.m └── turn_imagesc.m ├── SFS_ssr ├── ssr_brs.m ├── ssr_brs_nfchoa.m ├── ssr_brs_point_source.m ├── ssr_brs_wfs.m ├── ssr_generic_nfchoa.m └── ssr_generic_wfs.m ├── SFS_start.m ├── SFS_stop.m ├── SFS_time_domain ├── circexp_imp │ ├── circexp_imp_ps.m │ └── circexp_imp_pw.m ├── dirac_imp.m ├── driving_function_imp_localwfs_sbl.m ├── driving_function_imp_localwfs_vss.m ├── driving_function_imp_nfchoa.m ├── driving_function_imp_wfs.m ├── driving_functions_imp │ ├── driving_function_imp_localwfs_sbl_ps.m │ ├── driving_function_imp_localwfs_sbl_pw.m │ ├── driving_function_imp_nfchoa_fs.m │ ├── driving_function_imp_nfchoa_ls.m │ ├── driving_function_imp_nfchoa_ps.m │ ├── driving_function_imp_nfchoa_pw.m │ ├── driving_function_imp_wfs_fs.m │ ├── driving_function_imp_wfs_ls.m │ ├── driving_function_imp_wfs_ps.m │ ├── driving_function_imp_wfs_pw.m │ ├── driving_function_imp_wfs_pwd.m │ └── driving_function_imp_wfs_vss.m ├── greens_function_imp.m ├── localwfs_findhpref.m ├── movie_sound_field_imp_wfs.m ├── pwd_imp │ └── pwd_imp_circexp.m ├── sound_field_imp.m ├── sound_field_imp_line_source.m ├── sound_field_imp_localwfs_sbl.m ├── sound_field_imp_localwfs_vss.m ├── sound_field_imp_nfchoa.m ├── sound_field_imp_plane_wave.m ├── sound_field_imp_point_source.m ├── sound_field_imp_wfs.m ├── wfs_fir_prefilter.m ├── wfs_iir_prefilter.m └── wfs_preequalization.m ├── SFS_version.m ├── doc ├── README.md ├── _static │ └── css │ │ ├── abbr.css │ │ └── title.css ├── _template │ └── layout.html ├── acronyms.py ├── binaural-simulations.rst ├── conf.py ├── custom-grid.rst ├── frequency-domain.rst ├── helper-functions.rst ├── img │ ├── frequency_response_wfs_25d.png │ ├── frequency_response_wfs_25d_mono.png │ ├── generate_plots.m │ ├── impulse_response_wfs_25d.png │ ├── impulse_response_wfs_25d_imp.png │ ├── secondary_sources_arbitrary.png │ ├── secondary_sources_arbitrary_realloudspeakers.png │ ├── secondary_sources_box.png │ ├── secondary_sources_circle.png │ ├── secondary_sources_linear.png │ ├── secondary_sources_linear_log.png │ ├── secondary_sources_rounded-box.png │ ├── secondary_sources_sphere.png │ ├── sound_field_imp_multiple_sources_dB.png │ ├── sound_field_imp_nfchoa_25d.png │ ├── sound_field_imp_nfchoa_25d_dB.png │ ├── sound_field_imp_nfchoa_25d_dB_custom_grid.png │ ├── sound_field_imp_nfchoa_25d_dB_kaiser.png │ ├── sound_field_imp_nfchoa_25d_dB_max-rE.png │ ├── sound_field_imp_nfchoa_25d_dB_rect.png │ ├── sound_field_imp_nfchoa_25d_dB_tukey.png │ ├── sound_field_localwfs_2d.png │ ├── sound_field_nfchoa_25d.png │ ├── sound_field_stereo.png │ ├── sound_field_wfs_25d.png │ ├── sound_field_wfs_25d_with_all_sources.png │ ├── sound_field_wfs_3d_xy.png │ ├── sound_field_wfs_3d_xyz.png │ ├── sound_field_wfs_3d_xyz_custom_grid.png │ ├── sound_field_wfs_3d_xz.png │ ├── sound_field_wfs_3d_yz.png │ ├── tu_berlin_hrtf.jpg │ └── university_rostock_loudspeaker_array.jpg ├── index.rst ├── modal-window.rst ├── plotting.rst ├── requirements.txt ├── secondary-sources.rst ├── time-domain.rst └── versions.rst └── validation ├── README.rst ├── test_all.m ├── test_binaural_synthesis.m ├── test_colormaps.m ├── test_delayline.m ├── test_driving_functions.m ├── test_driving_functions_imp_with_delay.m ├── test_exp_imp.m ├── test_exp_mono.m ├── test_hrtf_extrapolation.m ├── test_imp_25d.m ├── test_interpolation_methods.m ├── test_interpolation_point_selection.m ├── test_linkwitz_riley.m ├── test_localwfs_sbl.m ├── test_localwfs_vss.m ├── test_modal_weighting.m ├── test_non_regular_grid.m ├── test_plotting.m ├── test_secondary_source_diameter.m ├── test_secondary_source_positions.m ├── test_secondary_source_selection.m ├── test_spectrum_signal_conversion.m ├── test_sphbesselh_zeros.m ├── test_tapering_window.m ├── test_wfs_25d.m └── test_wfs_iir_prefilter.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/.gitignore -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/.zenodo.json -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/NEWS -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/README.rst -------------------------------------------------------------------------------- /SFS_HRTF_extrapolation/extrapolate_farfield_hrtfset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_HRTF_extrapolation/extrapolate_farfield_hrtfset.m -------------------------------------------------------------------------------- /SFS_analysis/freq_response_line_source.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_analysis/freq_response_line_source.m -------------------------------------------------------------------------------- /SFS_analysis/freq_response_localwfs_sbl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_analysis/freq_response_localwfs_sbl.m -------------------------------------------------------------------------------- /SFS_analysis/freq_response_localwfs_vss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_analysis/freq_response_localwfs_vss.m -------------------------------------------------------------------------------- /SFS_analysis/freq_response_nfchoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_analysis/freq_response_nfchoa.m -------------------------------------------------------------------------------- /SFS_analysis/freq_response_point_source.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_analysis/freq_response_point_source.m -------------------------------------------------------------------------------- /SFS_analysis/freq_response_wfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_analysis/freq_response_wfs.m -------------------------------------------------------------------------------- /SFS_analysis/time_response_line_source.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_analysis/time_response_line_source.m -------------------------------------------------------------------------------- /SFS_analysis/time_response_localwfs_sbl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_analysis/time_response_localwfs_sbl.m -------------------------------------------------------------------------------- /SFS_analysis/time_response_localwfs_vss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_analysis/time_response_localwfs_vss.m -------------------------------------------------------------------------------- /SFS_analysis/time_response_nfchoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_analysis/time_response_nfchoa.m -------------------------------------------------------------------------------- /SFS_analysis/time_response_point_source.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_analysis/time_response_point_source.m -------------------------------------------------------------------------------- /SFS_analysis/time_response_wfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_analysis/time_response_wfs.m -------------------------------------------------------------------------------- /SFS_analysis/wave_fronts_wfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_analysis/wave_fronts_wfs.m -------------------------------------------------------------------------------- /SFS_binaural_synthesis/auralize_ir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_binaural_synthesis/auralize_ir.m -------------------------------------------------------------------------------- /SFS_binaural_synthesis/compensate_headphone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_binaural_synthesis/compensate_headphone.m -------------------------------------------------------------------------------- /SFS_binaural_synthesis/ir_generic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_binaural_synthesis/ir_generic.m -------------------------------------------------------------------------------- /SFS_binaural_synthesis/ir_localwfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_binaural_synthesis/ir_localwfs.m -------------------------------------------------------------------------------- /SFS_binaural_synthesis/ir_nfchoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_binaural_synthesis/ir_nfchoa.m -------------------------------------------------------------------------------- /SFS_binaural_synthesis/ir_point_source.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_binaural_synthesis/ir_point_source.m -------------------------------------------------------------------------------- /SFS_binaural_synthesis/ir_wfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_binaural_synthesis/ir_wfs.m -------------------------------------------------------------------------------- /SFS_config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_config.m -------------------------------------------------------------------------------- /SFS_general/aliasing_frequency.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/aliasing_frequency.m -------------------------------------------------------------------------------- /SFS_general/asslegendre.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/asslegendre.m -------------------------------------------------------------------------------- /SFS_general/bandpass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/bandpass.m -------------------------------------------------------------------------------- /SFS_general/bilinear_transform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/bilinear_transform.m -------------------------------------------------------------------------------- /SFS_general/check_dimensionality.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/check_dimensionality.m -------------------------------------------------------------------------------- /SFS_general/cm2in.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/cm2in.m -------------------------------------------------------------------------------- /SFS_general/cm2px.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/cm2px.m -------------------------------------------------------------------------------- /SFS_general/column_vector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/column_vector.m -------------------------------------------------------------------------------- /SFS_general/convolution.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/convolution.m -------------------------------------------------------------------------------- /SFS_general/correct_azimuth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/correct_azimuth.m -------------------------------------------------------------------------------- /SFS_general/correct_elevation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/correct_elevation.m -------------------------------------------------------------------------------- /SFS_general/deg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/deg.m -------------------------------------------------------------------------------- /SFS_general/delayline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/delayline.m -------------------------------------------------------------------------------- /SFS_general/direction_vector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/direction_vector.m -------------------------------------------------------------------------------- /SFS_general/download_file.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/download_file.m -------------------------------------------------------------------------------- /SFS_general/findcols.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/findcols.m -------------------------------------------------------------------------------- /SFS_general/findconvexcone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/findconvexcone.m -------------------------------------------------------------------------------- /SFS_general/findnearestneighbour.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/findnearestneighbour.m -------------------------------------------------------------------------------- /SFS_general/findrows.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/findrows.m -------------------------------------------------------------------------------- /SFS_general/findvoronoi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/findvoronoi.m -------------------------------------------------------------------------------- /SFS_general/fix_length.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/fix_length.m -------------------------------------------------------------------------------- /SFS_general/gaindb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/gaindb.m -------------------------------------------------------------------------------- /SFS_general/general_least_squares.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/general_least_squares.m -------------------------------------------------------------------------------- /SFS_general/get_shelve_lagrange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/get_shelve_lagrange.m -------------------------------------------------------------------------------- /SFS_general/get_spherical_grid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/get_spherical_grid.m -------------------------------------------------------------------------------- /SFS_general/hann_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/hann_window.m -------------------------------------------------------------------------------- /SFS_general/in2cm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/in2cm.m -------------------------------------------------------------------------------- /SFS_general/in2px.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/in2px.m -------------------------------------------------------------------------------- /SFS_general/inverse_cht.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/inverse_cht.m -------------------------------------------------------------------------------- /SFS_general/inverse_lt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/inverse_lt.m -------------------------------------------------------------------------------- /SFS_general/is_dim_custom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/is_dim_custom.m -------------------------------------------------------------------------------- /SFS_general/is_dim_singleton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/is_dim_singleton.m -------------------------------------------------------------------------------- /SFS_general/iseven.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/iseven.m -------------------------------------------------------------------------------- /SFS_general/ismonoinc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/ismonoinc.m -------------------------------------------------------------------------------- /SFS_general/isodd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/isodd.m -------------------------------------------------------------------------------- /SFS_general/lagrange_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/lagrange_filter.m -------------------------------------------------------------------------------- /SFS_general/legpts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/legpts.m -------------------------------------------------------------------------------- /SFS_general/linkwitz_riley.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/linkwitz_riley.m -------------------------------------------------------------------------------- /SFS_general/modal_weighting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/modal_weighting.m -------------------------------------------------------------------------------- /SFS_general/nfchoa_order.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/nfchoa_order.m -------------------------------------------------------------------------------- /SFS_general/norm_signal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/norm_signal.m -------------------------------------------------------------------------------- /SFS_general/pm_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/pm_filter.m -------------------------------------------------------------------------------- /SFS_general/px2cm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/px2cm.m -------------------------------------------------------------------------------- /SFS_general/px2in.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/px2in.m -------------------------------------------------------------------------------- /SFS_general/rad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/rad.m -------------------------------------------------------------------------------- /SFS_general/rotation_matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/rotation_matrix.m -------------------------------------------------------------------------------- /SFS_general/rounded_box.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/rounded_box.m -------------------------------------------------------------------------------- /SFS_general/row_vector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/row_vector.m -------------------------------------------------------------------------------- /SFS_general/savewav.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/savewav.m -------------------------------------------------------------------------------- /SFS_general/secondary_source_diameter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/secondary_source_diameter.m -------------------------------------------------------------------------------- /SFS_general/secondary_source_distance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/secondary_source_distance.m -------------------------------------------------------------------------------- /SFS_general/secondary_source_positions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/secondary_source_positions.m -------------------------------------------------------------------------------- /SFS_general/secondary_source_selection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/secondary_source_selection.m -------------------------------------------------------------------------------- /SFS_general/secondary_source_tapering.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/secondary_source_tapering.m -------------------------------------------------------------------------------- /SFS_general/signal_from_spectrum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/signal_from_spectrum.m -------------------------------------------------------------------------------- /SFS_general/spectrum_from_signal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/spectrum_from_signal.m -------------------------------------------------------------------------------- /SFS_general/sphbesselh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/sphbesselh.m -------------------------------------------------------------------------------- /SFS_general/sphbesselh_zeros.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/sphbesselh_zeros.m -------------------------------------------------------------------------------- /SFS_general/sphbesselj.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/sphbesselj.m -------------------------------------------------------------------------------- /SFS_general/sphbessely.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/sphbessely.m -------------------------------------------------------------------------------- /SFS_general/sphharmonics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/sphharmonics.m -------------------------------------------------------------------------------- /SFS_general/tapering_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/tapering_window.m -------------------------------------------------------------------------------- /SFS_general/thiran_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/thiran_filter.m -------------------------------------------------------------------------------- /SFS_general/vector_norm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/vector_norm.m -------------------------------------------------------------------------------- /SFS_general/vector_product.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/vector_product.m -------------------------------------------------------------------------------- /SFS_general/virtual_secondary_source_positions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/virtual_secondary_source_positions.m -------------------------------------------------------------------------------- /SFS_general/warning_if_zero.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/warning_if_zero.m -------------------------------------------------------------------------------- /SFS_general/weights_for_points_on_a_sphere_rectangle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/weights_for_points_on_a_sphere_rectangle.m -------------------------------------------------------------------------------- /SFS_general/xyz_axes_selection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/xyz_axes_selection.m -------------------------------------------------------------------------------- /SFS_general/xyz_grid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_general/xyz_grid.m -------------------------------------------------------------------------------- /SFS_helper/get_position_and_orientation_ls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/get_position_and_orientation_ls.m -------------------------------------------------------------------------------- /SFS_helper/get_sfs_path.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/get_sfs_path.m -------------------------------------------------------------------------------- /SFS_helper/isargchar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/isargchar.m -------------------------------------------------------------------------------- /SFS_helper/isargcoord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/isargcoord.m -------------------------------------------------------------------------------- /SFS_helper/isargdir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/isargdir.m -------------------------------------------------------------------------------- /SFS_helper/isargequallength.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/isargequallength.m -------------------------------------------------------------------------------- /SFS_helper/isargequalsize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/isargequalsize.m -------------------------------------------------------------------------------- /SFS_helper/isargfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/isargfile.m -------------------------------------------------------------------------------- /SFS_helper/isargmatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/isargmatrix.m -------------------------------------------------------------------------------- /SFS_helper/isargnegativescalar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/isargnegativescalar.m -------------------------------------------------------------------------------- /SFS_helper/isargnumeric.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/isargnumeric.m -------------------------------------------------------------------------------- /SFS_helper/isargposition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/isargposition.m -------------------------------------------------------------------------------- /SFS_helper/isargpositivescalar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/isargpositivescalar.m -------------------------------------------------------------------------------- /SFS_helper/isargscalar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/isargscalar.m -------------------------------------------------------------------------------- /SFS_helper/isargsecondarysource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/isargsecondarysource.m -------------------------------------------------------------------------------- /SFS_helper/isargstruct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/isargstruct.m -------------------------------------------------------------------------------- /SFS_helper/isargvector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/isargvector.m -------------------------------------------------------------------------------- /SFS_helper/isargxs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/isargxs.m -------------------------------------------------------------------------------- /SFS_helper/isoctave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/isoctave.m -------------------------------------------------------------------------------- /SFS_helper/iswindows.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/iswindows.m -------------------------------------------------------------------------------- /SFS_helper/progress_bar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/progress_bar.m -------------------------------------------------------------------------------- /SFS_helper/to_be_implemented.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_helper/to_be_implemented.m -------------------------------------------------------------------------------- /SFS_ir/dummy_irs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_ir/dummy_irs.m -------------------------------------------------------------------------------- /SFS_ir/get_ir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_ir/get_ir.m -------------------------------------------------------------------------------- /SFS_ir/interpolate_ir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_ir/interpolate_ir.m -------------------------------------------------------------------------------- /SFS_ir/ir_correct_distance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_ir/ir_correct_distance.m -------------------------------------------------------------------------------- /SFS_ir/reduce_ir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_ir/reduce_ir.m -------------------------------------------------------------------------------- /SFS_ir/shorten_ir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_ir/shorten_ir.m -------------------------------------------------------------------------------- /SFS_ir/sofa2brs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_ir/sofa2brs.m -------------------------------------------------------------------------------- /SFS_ir/sofa_get_data_fir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_ir/sofa_get_data_fir.m -------------------------------------------------------------------------------- /SFS_ir/sofa_get_data_fire.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_ir/sofa_get_data_fire.m -------------------------------------------------------------------------------- /SFS_ir/sofa_get_head_orientations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_ir/sofa_get_head_orientations.m -------------------------------------------------------------------------------- /SFS_ir/sofa_get_header.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_ir/sofa_get_header.m -------------------------------------------------------------------------------- /SFS_ir/sofa_get_listener_position.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_ir/sofa_get_listener_position.m -------------------------------------------------------------------------------- /SFS_ir/sofa_get_secondary_sources.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_ir/sofa_get_secondary_sources.m -------------------------------------------------------------------------------- /SFS_ir/sofa_is_file.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_ir/sofa_is_file.m -------------------------------------------------------------------------------- /SFS_monochromatic/circexp_mono/circexp_mono_ps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/circexp_mono/circexp_mono_ps.m -------------------------------------------------------------------------------- /SFS_monochromatic/circexp_mono/circexp_mono_pw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/circexp_mono/circexp_mono_pw.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_function_mono_localwfs_sbl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_function_mono_localwfs_sbl.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_function_mono_localwfs_vss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_function_mono_localwfs_vss.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_function_mono_nfchoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_function_mono_nfchoa.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_function_mono_sdm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_function_mono_sdm.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_function_mono_sdm_kx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_function_mono_sdm_kx.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_function_mono_wfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_function_mono_wfs.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_functions_mono/driving_function_mono_localwfs_sbl_ps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_functions_mono/driving_function_mono_localwfs_sbl_ps.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_functions_mono/driving_function_mono_localwfs_sbl_pw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_functions_mono/driving_function_mono_localwfs_sbl_pw.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_functions_mono/driving_function_mono_nfchoa_fs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_functions_mono/driving_function_mono_nfchoa_fs.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_functions_mono/driving_function_mono_nfchoa_ls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_functions_mono/driving_function_mono_nfchoa_ls.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_functions_mono/driving_function_mono_nfchoa_ps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_functions_mono/driving_function_mono_nfchoa_ps.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_functions_mono/driving_function_mono_nfchoa_pw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_functions_mono/driving_function_mono_nfchoa_pw.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_functions_mono/driving_function_mono_sdm_fs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_functions_mono/driving_function_mono_sdm_fs.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_functions_mono/driving_function_mono_sdm_kx_fs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_functions_mono/driving_function_mono_sdm_kx_fs.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_functions_mono/driving_function_mono_sdm_kx_ls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_functions_mono/driving_function_mono_sdm_kx_ls.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_functions_mono/driving_function_mono_sdm_kx_ps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_functions_mono/driving_function_mono_sdm_kx_ps.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_functions_mono/driving_function_mono_sdm_kx_pw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_functions_mono/driving_function_mono_sdm_kx_pw.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_functions_mono/driving_function_mono_sdm_ls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_functions_mono/driving_function_mono_sdm_ls.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_functions_mono/driving_function_mono_sdm_ps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_functions_mono/driving_function_mono_sdm_ps.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_functions_mono/driving_function_mono_sdm_pw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_functions_mono/driving_function_mono_sdm_pw.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_functions_mono/driving_function_mono_wfs_fs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_functions_mono/driving_function_mono_wfs_fs.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_functions_mono/driving_function_mono_wfs_ls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_functions_mono/driving_function_mono_wfs_ls.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_functions_mono/driving_function_mono_wfs_ps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_functions_mono/driving_function_mono_wfs_ps.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_functions_mono/driving_function_mono_wfs_pw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_functions_mono/driving_function_mono_wfs_pw.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_functions_mono/driving_function_mono_wfs_pwd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_functions_mono/driving_function_mono_wfs_pwd.m -------------------------------------------------------------------------------- /SFS_monochromatic/driving_functions_mono/driving_function_mono_wfs_vss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/driving_functions_mono/driving_function_mono_wfs_vss.m -------------------------------------------------------------------------------- /SFS_monochromatic/greens_function_mono.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/greens_function_mono.m -------------------------------------------------------------------------------- /SFS_monochromatic/movie_sound_field_mono_wfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/movie_sound_field_mono_wfs.m -------------------------------------------------------------------------------- /SFS_monochromatic/pwd_mono/pwd_mono_circexp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/pwd_mono/pwd_mono_circexp.m -------------------------------------------------------------------------------- /SFS_monochromatic/sound_field_mono.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/sound_field_mono.m -------------------------------------------------------------------------------- /SFS_monochromatic/sound_field_mono_line_source.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/sound_field_mono_line_source.m -------------------------------------------------------------------------------- /SFS_monochromatic/sound_field_mono_localwfs_sbl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/sound_field_mono_localwfs_sbl.m -------------------------------------------------------------------------------- /SFS_monochromatic/sound_field_mono_localwfs_vss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/sound_field_mono_localwfs_vss.m -------------------------------------------------------------------------------- /SFS_monochromatic/sound_field_mono_nfchoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/sound_field_mono_nfchoa.m -------------------------------------------------------------------------------- /SFS_monochromatic/sound_field_mono_plane_wave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/sound_field_mono_plane_wave.m -------------------------------------------------------------------------------- /SFS_monochromatic/sound_field_mono_point_source.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/sound_field_mono_point_source.m -------------------------------------------------------------------------------- /SFS_monochromatic/sound_field_mono_sdm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/sound_field_mono_sdm.m -------------------------------------------------------------------------------- /SFS_monochromatic/sound_field_mono_sdm_kx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/sound_field_mono_sdm_kx.m -------------------------------------------------------------------------------- /SFS_monochromatic/sound_field_mono_wfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_monochromatic/sound_field_mono_wfs.m -------------------------------------------------------------------------------- /SFS_octave/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_octave/README.txt -------------------------------------------------------------------------------- /SFS_octave/db.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_octave/db.m -------------------------------------------------------------------------------- /SFS_octave/rms.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_octave/rms.m -------------------------------------------------------------------------------- /SFS_plotting/colormaps/inferno.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/colormaps/inferno.m -------------------------------------------------------------------------------- /SFS_plotting/colormaps/magma.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/colormaps/magma.m -------------------------------------------------------------------------------- /SFS_plotting/colormaps/moreland.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/colormaps/moreland.m -------------------------------------------------------------------------------- /SFS_plotting/colormaps/yellowred.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/colormaps/yellowred.m -------------------------------------------------------------------------------- /SFS_plotting/draw_loudspeakers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/draw_loudspeakers.m -------------------------------------------------------------------------------- /SFS_plotting/figsize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/figsize.m -------------------------------------------------------------------------------- /SFS_plotting/generate_colormap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/generate_colormap.m -------------------------------------------------------------------------------- /SFS_plotting/generate_movie.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/generate_movie.m -------------------------------------------------------------------------------- /SFS_plotting/gp_draw_loudspeakers.gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/gp_draw_loudspeakers.gnu -------------------------------------------------------------------------------- /SFS_plotting/gp_load.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/gp_load.m -------------------------------------------------------------------------------- /SFS_plotting/gp_save.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/gp_save.m -------------------------------------------------------------------------------- /SFS_plotting/gp_save_loudspeakers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/gp_save_loudspeakers.m -------------------------------------------------------------------------------- /SFS_plotting/gp_save_matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/gp_save_matrix.m -------------------------------------------------------------------------------- /SFS_plotting/gp_set_head.gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/gp_set_head.gnu -------------------------------------------------------------------------------- /SFS_plotting/gp_set_loudspeaker.gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/gp_set_loudspeaker.gnu -------------------------------------------------------------------------------- /SFS_plotting/norm_sound_field.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/norm_sound_field.m -------------------------------------------------------------------------------- /SFS_plotting/plot_sound_field.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/plot_sound_field.m -------------------------------------------------------------------------------- /SFS_plotting/print_eps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/print_eps.m -------------------------------------------------------------------------------- /SFS_plotting/print_png.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/print_png.m -------------------------------------------------------------------------------- /SFS_plotting/set_colorbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/set_colorbar.m -------------------------------------------------------------------------------- /SFS_plotting/set_colormap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/set_colormap.m -------------------------------------------------------------------------------- /SFS_plotting/set_font_size.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/set_font_size.m -------------------------------------------------------------------------------- /SFS_plotting/set_font_type.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/set_font_type.m -------------------------------------------------------------------------------- /SFS_plotting/turn_imagesc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_plotting/turn_imagesc.m -------------------------------------------------------------------------------- /SFS_ssr/ssr_brs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_ssr/ssr_brs.m -------------------------------------------------------------------------------- /SFS_ssr/ssr_brs_nfchoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_ssr/ssr_brs_nfchoa.m -------------------------------------------------------------------------------- /SFS_ssr/ssr_brs_point_source.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_ssr/ssr_brs_point_source.m -------------------------------------------------------------------------------- /SFS_ssr/ssr_brs_wfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_ssr/ssr_brs_wfs.m -------------------------------------------------------------------------------- /SFS_ssr/ssr_generic_nfchoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_ssr/ssr_generic_nfchoa.m -------------------------------------------------------------------------------- /SFS_ssr/ssr_generic_wfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_ssr/ssr_generic_wfs.m -------------------------------------------------------------------------------- /SFS_start.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_start.m -------------------------------------------------------------------------------- /SFS_stop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_stop.m -------------------------------------------------------------------------------- /SFS_time_domain/circexp_imp/circexp_imp_ps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/circexp_imp/circexp_imp_ps.m -------------------------------------------------------------------------------- /SFS_time_domain/circexp_imp/circexp_imp_pw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/circexp_imp/circexp_imp_pw.m -------------------------------------------------------------------------------- /SFS_time_domain/dirac_imp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/dirac_imp.m -------------------------------------------------------------------------------- /SFS_time_domain/driving_function_imp_localwfs_sbl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/driving_function_imp_localwfs_sbl.m -------------------------------------------------------------------------------- /SFS_time_domain/driving_function_imp_localwfs_vss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/driving_function_imp_localwfs_vss.m -------------------------------------------------------------------------------- /SFS_time_domain/driving_function_imp_nfchoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/driving_function_imp_nfchoa.m -------------------------------------------------------------------------------- /SFS_time_domain/driving_function_imp_wfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/driving_function_imp_wfs.m -------------------------------------------------------------------------------- /SFS_time_domain/driving_functions_imp/driving_function_imp_localwfs_sbl_ps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/driving_functions_imp/driving_function_imp_localwfs_sbl_ps.m -------------------------------------------------------------------------------- /SFS_time_domain/driving_functions_imp/driving_function_imp_localwfs_sbl_pw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/driving_functions_imp/driving_function_imp_localwfs_sbl_pw.m -------------------------------------------------------------------------------- /SFS_time_domain/driving_functions_imp/driving_function_imp_nfchoa_fs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/driving_functions_imp/driving_function_imp_nfchoa_fs.m -------------------------------------------------------------------------------- /SFS_time_domain/driving_functions_imp/driving_function_imp_nfchoa_ls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/driving_functions_imp/driving_function_imp_nfchoa_ls.m -------------------------------------------------------------------------------- /SFS_time_domain/driving_functions_imp/driving_function_imp_nfchoa_ps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/driving_functions_imp/driving_function_imp_nfchoa_ps.m -------------------------------------------------------------------------------- /SFS_time_domain/driving_functions_imp/driving_function_imp_nfchoa_pw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/driving_functions_imp/driving_function_imp_nfchoa_pw.m -------------------------------------------------------------------------------- /SFS_time_domain/driving_functions_imp/driving_function_imp_wfs_fs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/driving_functions_imp/driving_function_imp_wfs_fs.m -------------------------------------------------------------------------------- /SFS_time_domain/driving_functions_imp/driving_function_imp_wfs_ls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/driving_functions_imp/driving_function_imp_wfs_ls.m -------------------------------------------------------------------------------- /SFS_time_domain/driving_functions_imp/driving_function_imp_wfs_ps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/driving_functions_imp/driving_function_imp_wfs_ps.m -------------------------------------------------------------------------------- /SFS_time_domain/driving_functions_imp/driving_function_imp_wfs_pw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/driving_functions_imp/driving_function_imp_wfs_pw.m -------------------------------------------------------------------------------- /SFS_time_domain/driving_functions_imp/driving_function_imp_wfs_pwd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/driving_functions_imp/driving_function_imp_wfs_pwd.m -------------------------------------------------------------------------------- /SFS_time_domain/driving_functions_imp/driving_function_imp_wfs_vss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/driving_functions_imp/driving_function_imp_wfs_vss.m -------------------------------------------------------------------------------- /SFS_time_domain/greens_function_imp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/greens_function_imp.m -------------------------------------------------------------------------------- /SFS_time_domain/localwfs_findhpref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/localwfs_findhpref.m -------------------------------------------------------------------------------- /SFS_time_domain/movie_sound_field_imp_wfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/movie_sound_field_imp_wfs.m -------------------------------------------------------------------------------- /SFS_time_domain/pwd_imp/pwd_imp_circexp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/pwd_imp/pwd_imp_circexp.m -------------------------------------------------------------------------------- /SFS_time_domain/sound_field_imp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/sound_field_imp.m -------------------------------------------------------------------------------- /SFS_time_domain/sound_field_imp_line_source.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/sound_field_imp_line_source.m -------------------------------------------------------------------------------- /SFS_time_domain/sound_field_imp_localwfs_sbl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/sound_field_imp_localwfs_sbl.m -------------------------------------------------------------------------------- /SFS_time_domain/sound_field_imp_localwfs_vss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/sound_field_imp_localwfs_vss.m -------------------------------------------------------------------------------- /SFS_time_domain/sound_field_imp_nfchoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/sound_field_imp_nfchoa.m -------------------------------------------------------------------------------- /SFS_time_domain/sound_field_imp_plane_wave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/sound_field_imp_plane_wave.m -------------------------------------------------------------------------------- /SFS_time_domain/sound_field_imp_point_source.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/sound_field_imp_point_source.m -------------------------------------------------------------------------------- /SFS_time_domain/sound_field_imp_wfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/sound_field_imp_wfs.m -------------------------------------------------------------------------------- /SFS_time_domain/wfs_fir_prefilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/wfs_fir_prefilter.m -------------------------------------------------------------------------------- /SFS_time_domain/wfs_iir_prefilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/wfs_iir_prefilter.m -------------------------------------------------------------------------------- /SFS_time_domain/wfs_preequalization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_time_domain/wfs_preequalization.m -------------------------------------------------------------------------------- /SFS_version.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/SFS_version.m -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/_static/css/abbr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/_static/css/abbr.css -------------------------------------------------------------------------------- /doc/_static/css/title.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/_static/css/title.css -------------------------------------------------------------------------------- /doc/_template/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/_template/layout.html -------------------------------------------------------------------------------- /doc/acronyms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/acronyms.py -------------------------------------------------------------------------------- /doc/binaural-simulations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/binaural-simulations.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/custom-grid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/custom-grid.rst -------------------------------------------------------------------------------- /doc/frequency-domain.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/frequency-domain.rst -------------------------------------------------------------------------------- /doc/helper-functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/helper-functions.rst -------------------------------------------------------------------------------- /doc/img/frequency_response_wfs_25d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/frequency_response_wfs_25d.png -------------------------------------------------------------------------------- /doc/img/frequency_response_wfs_25d_mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/frequency_response_wfs_25d_mono.png -------------------------------------------------------------------------------- /doc/img/generate_plots.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/generate_plots.m -------------------------------------------------------------------------------- /doc/img/impulse_response_wfs_25d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/impulse_response_wfs_25d.png -------------------------------------------------------------------------------- /doc/img/impulse_response_wfs_25d_imp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/impulse_response_wfs_25d_imp.png -------------------------------------------------------------------------------- /doc/img/secondary_sources_arbitrary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/secondary_sources_arbitrary.png -------------------------------------------------------------------------------- /doc/img/secondary_sources_arbitrary_realloudspeakers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/secondary_sources_arbitrary_realloudspeakers.png -------------------------------------------------------------------------------- /doc/img/secondary_sources_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/secondary_sources_box.png -------------------------------------------------------------------------------- /doc/img/secondary_sources_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/secondary_sources_circle.png -------------------------------------------------------------------------------- /doc/img/secondary_sources_linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/secondary_sources_linear.png -------------------------------------------------------------------------------- /doc/img/secondary_sources_linear_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/secondary_sources_linear_log.png -------------------------------------------------------------------------------- /doc/img/secondary_sources_rounded-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/secondary_sources_rounded-box.png -------------------------------------------------------------------------------- /doc/img/secondary_sources_sphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/secondary_sources_sphere.png -------------------------------------------------------------------------------- /doc/img/sound_field_imp_multiple_sources_dB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/sound_field_imp_multiple_sources_dB.png -------------------------------------------------------------------------------- /doc/img/sound_field_imp_nfchoa_25d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/sound_field_imp_nfchoa_25d.png -------------------------------------------------------------------------------- /doc/img/sound_field_imp_nfchoa_25d_dB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/sound_field_imp_nfchoa_25d_dB.png -------------------------------------------------------------------------------- /doc/img/sound_field_imp_nfchoa_25d_dB_custom_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/sound_field_imp_nfchoa_25d_dB_custom_grid.png -------------------------------------------------------------------------------- /doc/img/sound_field_imp_nfchoa_25d_dB_kaiser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/sound_field_imp_nfchoa_25d_dB_kaiser.png -------------------------------------------------------------------------------- /doc/img/sound_field_imp_nfchoa_25d_dB_max-rE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/sound_field_imp_nfchoa_25d_dB_max-rE.png -------------------------------------------------------------------------------- /doc/img/sound_field_imp_nfchoa_25d_dB_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/sound_field_imp_nfchoa_25d_dB_rect.png -------------------------------------------------------------------------------- /doc/img/sound_field_imp_nfchoa_25d_dB_tukey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/sound_field_imp_nfchoa_25d_dB_tukey.png -------------------------------------------------------------------------------- /doc/img/sound_field_localwfs_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/sound_field_localwfs_2d.png -------------------------------------------------------------------------------- /doc/img/sound_field_nfchoa_25d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/sound_field_nfchoa_25d.png -------------------------------------------------------------------------------- /doc/img/sound_field_stereo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/sound_field_stereo.png -------------------------------------------------------------------------------- /doc/img/sound_field_wfs_25d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/sound_field_wfs_25d.png -------------------------------------------------------------------------------- /doc/img/sound_field_wfs_25d_with_all_sources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/sound_field_wfs_25d_with_all_sources.png -------------------------------------------------------------------------------- /doc/img/sound_field_wfs_3d_xy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/sound_field_wfs_3d_xy.png -------------------------------------------------------------------------------- /doc/img/sound_field_wfs_3d_xyz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/sound_field_wfs_3d_xyz.png -------------------------------------------------------------------------------- /doc/img/sound_field_wfs_3d_xyz_custom_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/sound_field_wfs_3d_xyz_custom_grid.png -------------------------------------------------------------------------------- /doc/img/sound_field_wfs_3d_xz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/sound_field_wfs_3d_xz.png -------------------------------------------------------------------------------- /doc/img/sound_field_wfs_3d_yz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/sound_field_wfs_3d_yz.png -------------------------------------------------------------------------------- /doc/img/tu_berlin_hrtf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/tu_berlin_hrtf.jpg -------------------------------------------------------------------------------- /doc/img/university_rostock_loudspeaker_array.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/img/university_rostock_loudspeaker_array.jpg -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/modal-window.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/modal-window.rst -------------------------------------------------------------------------------- /doc/plotting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/plotting.rst -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/secondary-sources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/secondary-sources.rst -------------------------------------------------------------------------------- /doc/time-domain.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/time-domain.rst -------------------------------------------------------------------------------- /doc/versions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/doc/versions.rst -------------------------------------------------------------------------------- /validation/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/README.rst -------------------------------------------------------------------------------- /validation/test_all.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_all.m -------------------------------------------------------------------------------- /validation/test_binaural_synthesis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_binaural_synthesis.m -------------------------------------------------------------------------------- /validation/test_colormaps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_colormaps.m -------------------------------------------------------------------------------- /validation/test_delayline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_delayline.m -------------------------------------------------------------------------------- /validation/test_driving_functions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_driving_functions.m -------------------------------------------------------------------------------- /validation/test_driving_functions_imp_with_delay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_driving_functions_imp_with_delay.m -------------------------------------------------------------------------------- /validation/test_exp_imp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_exp_imp.m -------------------------------------------------------------------------------- /validation/test_exp_mono.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_exp_mono.m -------------------------------------------------------------------------------- /validation/test_hrtf_extrapolation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_hrtf_extrapolation.m -------------------------------------------------------------------------------- /validation/test_imp_25d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_imp_25d.m -------------------------------------------------------------------------------- /validation/test_interpolation_methods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_interpolation_methods.m -------------------------------------------------------------------------------- /validation/test_interpolation_point_selection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_interpolation_point_selection.m -------------------------------------------------------------------------------- /validation/test_linkwitz_riley.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_linkwitz_riley.m -------------------------------------------------------------------------------- /validation/test_localwfs_sbl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_localwfs_sbl.m -------------------------------------------------------------------------------- /validation/test_localwfs_vss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_localwfs_vss.m -------------------------------------------------------------------------------- /validation/test_modal_weighting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_modal_weighting.m -------------------------------------------------------------------------------- /validation/test_non_regular_grid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_non_regular_grid.m -------------------------------------------------------------------------------- /validation/test_plotting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_plotting.m -------------------------------------------------------------------------------- /validation/test_secondary_source_diameter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_secondary_source_diameter.m -------------------------------------------------------------------------------- /validation/test_secondary_source_positions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_secondary_source_positions.m -------------------------------------------------------------------------------- /validation/test_secondary_source_selection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_secondary_source_selection.m -------------------------------------------------------------------------------- /validation/test_spectrum_signal_conversion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_spectrum_signal_conversion.m -------------------------------------------------------------------------------- /validation/test_sphbesselh_zeros.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_sphbesselh_zeros.m -------------------------------------------------------------------------------- /validation/test_tapering_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_tapering_window.m -------------------------------------------------------------------------------- /validation/test_wfs_25d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_wfs_25d.m -------------------------------------------------------------------------------- /validation/test_wfs_iir_prefilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfstoolbox/sfs-matlab/HEAD/validation/test_wfs_iir_prefilter.m --------------------------------------------------------------------------------