├── .gitignore ├── 2019-09-27-ElasticMatrix - Preprint.pdf ├── CNAME ├── LICENSE.txt ├── README.md ├── data ├── disperseTeflonPlateData.txt └── disperseTitaniumPlateData.txt ├── docs ├── Template.html ├── contact.html ├── download.html ├── gh_dispersion_pvdf.html ├── gh_dispersion_teflon.html ├── gh_dispersion_titanium.html ├── gh_elastic_matrix_class.html ├── gh_extra_functions.html ├── gh_fabry_perot_directivity.html ├── gh_interface_parameters.html ├── gh_medium_class.html ├── gh_overview.html ├── gh_periodic_media.html ├── gh_plot_field.html ├── gh_plot_field_movie.html ├── gh_reflection_and_transmission.html ├── gh_slowness_profiles.html ├── html │ ├── ElasticMatrix.html │ ├── example_dispersion_curve_PVDF_plate.html │ ├── example_dispersion_curve_teflon_plate.html │ ├── example_dispersion_curve_titanium_plate.html │ ├── example_elasticmatrix_class.html │ ├── example_extra_functions.html │ ├── example_fabry_perot_directivity.html │ ├── example_interface_parameters.html │ ├── example_medium_class.html │ ├── example_periodic_media.html │ ├── example_plot_field_parameters.html │ ├── example_plot_field_parameters_movie.html │ ├── example_reflection_and_transmission.html │ ├── example_slowness_profiles.html │ ├── helptoc.xml │ └── images │ │ ├── ElasticMatrix - class diagram.png │ │ ├── elastic_matrix_banner.JPG │ │ └── sfg_example.JPG └── index.html ├── documentation └── references.txt ├── examples ├── example_dispersion_curve_PVDF_plate.m ├── example_dispersion_curve_teflon_plate.m ├── example_dispersion_curve_titanium_plate.m ├── example_elasticmatrix_class.m ├── example_extra_functions.m ├── example_fabry_perot_directivity.m ├── example_fabry_perot_frequency_response.m ├── example_interface_parameters.m ├── example_medium_class.m ├── example_periodic_media.m ├── example_plot_field_parameters.m ├── example_plot_field_parameters_movie.m ├── example_reflection_and_transmission.m └── example_slowness_profiles.m ├── examples_mlx ├── ElasticMatrix.mlx ├── example_dispersion_curve_PVDF_plate.mlx ├── example_dispersion_curve_teflon_plate.mlx ├── example_dispersion_curve_titanium_plate.mlx ├── example_elasticmatrix_class.mlx ├── example_extra_functions.mlx ├── example_fabry_perot_directivity.mlx ├── example_interface_parameters.mlx ├── example_medium_class.mlx ├── example_periodic_media.mlx ├── example_plot_field_parameters.mlx ├── example_plot_field_parameters_movie.mlx ├── example_reflection_and_transmission.mlx └── example_slowness_profiles.mlx ├── info.xml └── src-pw ├── @ElasticMatrix ├── ElasticMatrix.m ├── calculate.m ├── calculateDispersionCurves.m ├── calculateDispersionCurvesCoarse.m ├── calculateField.m ├── calculateFieldMatrixAnisotropic.m ├── calculateMatrixModel.m ├── calculateMatrixModelKf.m ├── disp.m ├── getPartialWaveAmplitudes.m ├── plotDispersionCurves.m ├── plotField.m ├── plotInterfaceParameters.m ├── plotRCoefficients.m ├── plotRTCoefficients.m ├── save.m ├── setAngle.m ├── setFilename.m ├── setFrequency.m ├── setMedium.m ├── setPhasespeed.m └── setWavenumber.m ├── @FabryPerotSensor ├── FabryPerotSensor.m ├── calculateDirectivity.m ├── disp.m ├── getDirectivity.m ├── plotDirectivity.m ├── setMirrorLocations.m ├── setSpotDiameter.m └── setSpotType.m ├── @Medium ├── Medium.m ├── availableMaterials.m ├── calculateAlphaCoefficients.m ├── calculateSlowness.m ├── disp.m ├── getAcousticProperties.m ├── lameConversion.m ├── mtimes.m ├── plotSlowness.m ├── plus.m ├── setDensity.m ├── setName.m ├── setStiffnessMatrix.m ├── setThickness.m ├── soundSpeedDensityConversion.m ├── state.m └── times.m ├── calculateReflectionTransmissionAnalytic.m ├── cls.m ├── dfg.m ├── findClosest.m ├── findClosestMinimum.m ├── findZeroCrossing.m ├── materialList.m ├── normMe.m ├── printLineBreaks.m └── sfg.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/.gitignore -------------------------------------------------------------------------------- /2019-09-27-ElasticMatrix - Preprint.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/2019-09-27-ElasticMatrix - Preprint.pdf -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | elasticmatrix.org -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/README.md -------------------------------------------------------------------------------- /data/disperseTeflonPlateData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/data/disperseTeflonPlateData.txt -------------------------------------------------------------------------------- /data/disperseTitaniumPlateData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/data/disperseTitaniumPlateData.txt -------------------------------------------------------------------------------- /docs/Template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/Template.html -------------------------------------------------------------------------------- /docs/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/contact.html -------------------------------------------------------------------------------- /docs/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/download.html -------------------------------------------------------------------------------- /docs/gh_dispersion_pvdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/gh_dispersion_pvdf.html -------------------------------------------------------------------------------- /docs/gh_dispersion_teflon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/gh_dispersion_teflon.html -------------------------------------------------------------------------------- /docs/gh_dispersion_titanium.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/gh_dispersion_titanium.html -------------------------------------------------------------------------------- /docs/gh_elastic_matrix_class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/gh_elastic_matrix_class.html -------------------------------------------------------------------------------- /docs/gh_extra_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/gh_extra_functions.html -------------------------------------------------------------------------------- /docs/gh_fabry_perot_directivity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/gh_fabry_perot_directivity.html -------------------------------------------------------------------------------- /docs/gh_interface_parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/gh_interface_parameters.html -------------------------------------------------------------------------------- /docs/gh_medium_class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/gh_medium_class.html -------------------------------------------------------------------------------- /docs/gh_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/gh_overview.html -------------------------------------------------------------------------------- /docs/gh_periodic_media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/gh_periodic_media.html -------------------------------------------------------------------------------- /docs/gh_plot_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/gh_plot_field.html -------------------------------------------------------------------------------- /docs/gh_plot_field_movie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/gh_plot_field_movie.html -------------------------------------------------------------------------------- /docs/gh_reflection_and_transmission.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/gh_reflection_and_transmission.html -------------------------------------------------------------------------------- /docs/gh_slowness_profiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/gh_slowness_profiles.html -------------------------------------------------------------------------------- /docs/html/ElasticMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/html/ElasticMatrix.html -------------------------------------------------------------------------------- /docs/html/example_dispersion_curve_PVDF_plate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/html/example_dispersion_curve_PVDF_plate.html -------------------------------------------------------------------------------- /docs/html/example_dispersion_curve_teflon_plate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/html/example_dispersion_curve_teflon_plate.html -------------------------------------------------------------------------------- /docs/html/example_dispersion_curve_titanium_plate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/html/example_dispersion_curve_titanium_plate.html -------------------------------------------------------------------------------- /docs/html/example_elasticmatrix_class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/html/example_elasticmatrix_class.html -------------------------------------------------------------------------------- /docs/html/example_extra_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/html/example_extra_functions.html -------------------------------------------------------------------------------- /docs/html/example_fabry_perot_directivity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/html/example_fabry_perot_directivity.html -------------------------------------------------------------------------------- /docs/html/example_interface_parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/html/example_interface_parameters.html -------------------------------------------------------------------------------- /docs/html/example_medium_class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/html/example_medium_class.html -------------------------------------------------------------------------------- /docs/html/example_periodic_media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/html/example_periodic_media.html -------------------------------------------------------------------------------- /docs/html/example_plot_field_parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/html/example_plot_field_parameters.html -------------------------------------------------------------------------------- /docs/html/example_plot_field_parameters_movie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/html/example_plot_field_parameters_movie.html -------------------------------------------------------------------------------- /docs/html/example_reflection_and_transmission.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/html/example_reflection_and_transmission.html -------------------------------------------------------------------------------- /docs/html/example_slowness_profiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/html/example_slowness_profiles.html -------------------------------------------------------------------------------- /docs/html/helptoc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/html/helptoc.xml -------------------------------------------------------------------------------- /docs/html/images/ElasticMatrix - class diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/html/images/ElasticMatrix - class diagram.png -------------------------------------------------------------------------------- /docs/html/images/elastic_matrix_banner.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/html/images/elastic_matrix_banner.JPG -------------------------------------------------------------------------------- /docs/html/images/sfg_example.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/html/images/sfg_example.JPG -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/docs/index.html -------------------------------------------------------------------------------- /documentation/references.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/documentation/references.txt -------------------------------------------------------------------------------- /examples/example_dispersion_curve_PVDF_plate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples/example_dispersion_curve_PVDF_plate.m -------------------------------------------------------------------------------- /examples/example_dispersion_curve_teflon_plate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples/example_dispersion_curve_teflon_plate.m -------------------------------------------------------------------------------- /examples/example_dispersion_curve_titanium_plate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples/example_dispersion_curve_titanium_plate.m -------------------------------------------------------------------------------- /examples/example_elasticmatrix_class.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples/example_elasticmatrix_class.m -------------------------------------------------------------------------------- /examples/example_extra_functions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples/example_extra_functions.m -------------------------------------------------------------------------------- /examples/example_fabry_perot_directivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples/example_fabry_perot_directivity.m -------------------------------------------------------------------------------- /examples/example_fabry_perot_frequency_response.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples/example_fabry_perot_frequency_response.m -------------------------------------------------------------------------------- /examples/example_interface_parameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples/example_interface_parameters.m -------------------------------------------------------------------------------- /examples/example_medium_class.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples/example_medium_class.m -------------------------------------------------------------------------------- /examples/example_periodic_media.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples/example_periodic_media.m -------------------------------------------------------------------------------- /examples/example_plot_field_parameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples/example_plot_field_parameters.m -------------------------------------------------------------------------------- /examples/example_plot_field_parameters_movie.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples/example_plot_field_parameters_movie.m -------------------------------------------------------------------------------- /examples/example_reflection_and_transmission.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples/example_reflection_and_transmission.m -------------------------------------------------------------------------------- /examples/example_slowness_profiles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples/example_slowness_profiles.m -------------------------------------------------------------------------------- /examples_mlx/ElasticMatrix.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples_mlx/ElasticMatrix.mlx -------------------------------------------------------------------------------- /examples_mlx/example_dispersion_curve_PVDF_plate.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples_mlx/example_dispersion_curve_PVDF_plate.mlx -------------------------------------------------------------------------------- /examples_mlx/example_dispersion_curve_teflon_plate.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples_mlx/example_dispersion_curve_teflon_plate.mlx -------------------------------------------------------------------------------- /examples_mlx/example_dispersion_curve_titanium_plate.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples_mlx/example_dispersion_curve_titanium_plate.mlx -------------------------------------------------------------------------------- /examples_mlx/example_elasticmatrix_class.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples_mlx/example_elasticmatrix_class.mlx -------------------------------------------------------------------------------- /examples_mlx/example_extra_functions.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples_mlx/example_extra_functions.mlx -------------------------------------------------------------------------------- /examples_mlx/example_fabry_perot_directivity.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples_mlx/example_fabry_perot_directivity.mlx -------------------------------------------------------------------------------- /examples_mlx/example_interface_parameters.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples_mlx/example_interface_parameters.mlx -------------------------------------------------------------------------------- /examples_mlx/example_medium_class.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples_mlx/example_medium_class.mlx -------------------------------------------------------------------------------- /examples_mlx/example_periodic_media.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples_mlx/example_periodic_media.mlx -------------------------------------------------------------------------------- /examples_mlx/example_plot_field_parameters.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples_mlx/example_plot_field_parameters.mlx -------------------------------------------------------------------------------- /examples_mlx/example_plot_field_parameters_movie.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples_mlx/example_plot_field_parameters_movie.mlx -------------------------------------------------------------------------------- /examples_mlx/example_reflection_and_transmission.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples_mlx/example_reflection_and_transmission.mlx -------------------------------------------------------------------------------- /examples_mlx/example_slowness_profiles.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/examples_mlx/example_slowness_profiles.mlx -------------------------------------------------------------------------------- /info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/info.xml -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/ElasticMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/ElasticMatrix.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/calculate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/calculate.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/calculateDispersionCurves.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/calculateDispersionCurves.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/calculateDispersionCurvesCoarse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/calculateDispersionCurvesCoarse.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/calculateField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/calculateField.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/calculateFieldMatrixAnisotropic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/calculateFieldMatrixAnisotropic.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/calculateMatrixModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/calculateMatrixModel.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/calculateMatrixModelKf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/calculateMatrixModelKf.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/disp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/disp.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/getPartialWaveAmplitudes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/getPartialWaveAmplitudes.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/plotDispersionCurves.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/plotDispersionCurves.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/plotField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/plotField.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/plotInterfaceParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/plotInterfaceParameters.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/plotRCoefficients.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/plotRCoefficients.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/plotRTCoefficients.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/plotRTCoefficients.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/save.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/save.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/setAngle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/setAngle.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/setFilename.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/setFilename.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/setFrequency.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/setFrequency.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/setMedium.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/setMedium.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/setPhasespeed.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/setPhasespeed.m -------------------------------------------------------------------------------- /src-pw/@ElasticMatrix/setWavenumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@ElasticMatrix/setWavenumber.m -------------------------------------------------------------------------------- /src-pw/@FabryPerotSensor/FabryPerotSensor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@FabryPerotSensor/FabryPerotSensor.m -------------------------------------------------------------------------------- /src-pw/@FabryPerotSensor/calculateDirectivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@FabryPerotSensor/calculateDirectivity.m -------------------------------------------------------------------------------- /src-pw/@FabryPerotSensor/disp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@FabryPerotSensor/disp.m -------------------------------------------------------------------------------- /src-pw/@FabryPerotSensor/getDirectivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@FabryPerotSensor/getDirectivity.m -------------------------------------------------------------------------------- /src-pw/@FabryPerotSensor/plotDirectivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@FabryPerotSensor/plotDirectivity.m -------------------------------------------------------------------------------- /src-pw/@FabryPerotSensor/setMirrorLocations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@FabryPerotSensor/setMirrorLocations.m -------------------------------------------------------------------------------- /src-pw/@FabryPerotSensor/setSpotDiameter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@FabryPerotSensor/setSpotDiameter.m -------------------------------------------------------------------------------- /src-pw/@FabryPerotSensor/setSpotType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@FabryPerotSensor/setSpotType.m -------------------------------------------------------------------------------- /src-pw/@Medium/Medium.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@Medium/Medium.m -------------------------------------------------------------------------------- /src-pw/@Medium/availableMaterials.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@Medium/availableMaterials.m -------------------------------------------------------------------------------- /src-pw/@Medium/calculateAlphaCoefficients.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@Medium/calculateAlphaCoefficients.m -------------------------------------------------------------------------------- /src-pw/@Medium/calculateSlowness.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@Medium/calculateSlowness.m -------------------------------------------------------------------------------- /src-pw/@Medium/disp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@Medium/disp.m -------------------------------------------------------------------------------- /src-pw/@Medium/getAcousticProperties.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@Medium/getAcousticProperties.m -------------------------------------------------------------------------------- /src-pw/@Medium/lameConversion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@Medium/lameConversion.m -------------------------------------------------------------------------------- /src-pw/@Medium/mtimes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@Medium/mtimes.m -------------------------------------------------------------------------------- /src-pw/@Medium/plotSlowness.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@Medium/plotSlowness.m -------------------------------------------------------------------------------- /src-pw/@Medium/plus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@Medium/plus.m -------------------------------------------------------------------------------- /src-pw/@Medium/setDensity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@Medium/setDensity.m -------------------------------------------------------------------------------- /src-pw/@Medium/setName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@Medium/setName.m -------------------------------------------------------------------------------- /src-pw/@Medium/setStiffnessMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@Medium/setStiffnessMatrix.m -------------------------------------------------------------------------------- /src-pw/@Medium/setThickness.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@Medium/setThickness.m -------------------------------------------------------------------------------- /src-pw/@Medium/soundSpeedDensityConversion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@Medium/soundSpeedDensityConversion.m -------------------------------------------------------------------------------- /src-pw/@Medium/state.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@Medium/state.m -------------------------------------------------------------------------------- /src-pw/@Medium/times.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/@Medium/times.m -------------------------------------------------------------------------------- /src-pw/calculateReflectionTransmissionAnalytic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/calculateReflectionTransmissionAnalytic.m -------------------------------------------------------------------------------- /src-pw/cls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/cls.m -------------------------------------------------------------------------------- /src-pw/dfg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/dfg.m -------------------------------------------------------------------------------- /src-pw/findClosest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/findClosest.m -------------------------------------------------------------------------------- /src-pw/findClosestMinimum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/findClosestMinimum.m -------------------------------------------------------------------------------- /src-pw/findZeroCrossing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/findZeroCrossing.m -------------------------------------------------------------------------------- /src-pw/materialList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/materialList.m -------------------------------------------------------------------------------- /src-pw/normMe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/normMe.m -------------------------------------------------------------------------------- /src-pw/printLineBreaks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/printLineBreaks.m -------------------------------------------------------------------------------- /src-pw/sfg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dannyramasawmy/ElasticMatrix/HEAD/src-pw/sfg.m --------------------------------------------------------------------------------