├── LICENSE ├── README.md ├── Upload ├── example │ └── Ridgecrest │ │ ├── .DS_Store │ │ ├── input │ │ ├── .DS_Store │ │ ├── Rc_ph_grdx_asc_masked.lltnde │ │ ├── Rc_ph_grdx_dec_masked.lltnde │ │ ├── Rc_ph_grdy_asc_masked.lltnde │ │ ├── Rc_ph_grdy_dec_masked.lltnde │ │ ├── t64_asc_edit.lltnde │ │ ├── t65_asc_alos2_new.lltnde │ │ ├── t66_asc_alos2.lltnde │ │ └── t71_des.lltnde │ │ └── model │ │ └── config.inv ├── generate_greenp_grd.m ├── generate_smoothness.m ├── loop_one_weighs.m ├── loop_sf.m ├── main_inv.m └── plot_res.m ├── example ├── Maule │ ├── input │ │ ├── asc.lltnde │ │ ├── des.lltnde │ │ └── gps.lldet │ └── model │ │ └── config.inv └── Nepal │ ├── input │ ├── gps.lldet │ ├── nepal_asc.lltnde │ ├── nepal_des_t047.lltnde │ └── nepal_des_t048.lltnde │ └── model │ └── config.inv └── src ├── FastPeakFind.m ├── MC_uncertainty.m ├── boxcar_to_gaussian.m ├── calc_okada.m ├── calc_okada_in.m ├── compute_wave.m ├── config.inv ├── fBi.m ├── fBi_in.m ├── find_local_minmax.m ├── forward_patches.m ├── generate_green_a.m ├── generate_green_g.m ├── generate_green_g3.m ├── generate_green_o.m ├── generate_green_p.m ├── generate_green_ramp.m ├── generate_grid.m ├── generate_smoothness.m ├── get_wavelength.m ├── inifile.m ├── loop_dip_depth.m ├── loop_dip_depth_ridgecrest.m ├── loop_one_weighs.m ├── loop_one_weighs_ridgecrest.m ├── loop_sf.m ├── loop_sf_ridgecrest.m ├── loop_spec_fitting.m ├── main_inv.m ├── main_inv_GNSS.m ├── main_inv_kilauea.m ├── main_inv_save.m ├── main_inv_spec.m ├── mcmc.m ├── mogi.m ├── patch_smooth.m ├── patch_smooth_filt.m ├── plot_data.m ├── plot_patch_2d.m ├── plot_patches.m ├── plot_res.m ├── plot_res_rq2.m ├── plot_trace.m ├── points_to_line_old.m ├── proj_gov2trace.m ├── quatree.m ├── quatree_median.m ├── read_inv.m ├── rednoise.m ├── subsample.m ├── test_inv.m ├── test_model.m ├── trace2patch.m ├── utm2ll.m ├── write_inv.m └── xyz2surface.m /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/README.md -------------------------------------------------------------------------------- /Upload/example/Ridgecrest/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/Upload/example/Ridgecrest/.DS_Store -------------------------------------------------------------------------------- /Upload/example/Ridgecrest/input/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/Upload/example/Ridgecrest/input/.DS_Store -------------------------------------------------------------------------------- /Upload/example/Ridgecrest/input/Rc_ph_grdx_asc_masked.lltnde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/Upload/example/Ridgecrest/input/Rc_ph_grdx_asc_masked.lltnde -------------------------------------------------------------------------------- /Upload/example/Ridgecrest/input/Rc_ph_grdx_dec_masked.lltnde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/Upload/example/Ridgecrest/input/Rc_ph_grdx_dec_masked.lltnde -------------------------------------------------------------------------------- /Upload/example/Ridgecrest/input/Rc_ph_grdy_asc_masked.lltnde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/Upload/example/Ridgecrest/input/Rc_ph_grdy_asc_masked.lltnde -------------------------------------------------------------------------------- /Upload/example/Ridgecrest/input/Rc_ph_grdy_dec_masked.lltnde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/Upload/example/Ridgecrest/input/Rc_ph_grdy_dec_masked.lltnde -------------------------------------------------------------------------------- /Upload/example/Ridgecrest/input/t64_asc_edit.lltnde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/Upload/example/Ridgecrest/input/t64_asc_edit.lltnde -------------------------------------------------------------------------------- /Upload/example/Ridgecrest/input/t65_asc_alos2_new.lltnde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/Upload/example/Ridgecrest/input/t65_asc_alos2_new.lltnde -------------------------------------------------------------------------------- /Upload/example/Ridgecrest/input/t66_asc_alos2.lltnde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/Upload/example/Ridgecrest/input/t66_asc_alos2.lltnde -------------------------------------------------------------------------------- /Upload/example/Ridgecrest/input/t71_des.lltnde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/Upload/example/Ridgecrest/input/t71_des.lltnde -------------------------------------------------------------------------------- /Upload/example/Ridgecrest/model/config.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/Upload/example/Ridgecrest/model/config.inv -------------------------------------------------------------------------------- /Upload/generate_greenp_grd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/Upload/generate_greenp_grd.m -------------------------------------------------------------------------------- /Upload/generate_smoothness.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/Upload/generate_smoothness.m -------------------------------------------------------------------------------- /Upload/loop_one_weighs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/Upload/loop_one_weighs.m -------------------------------------------------------------------------------- /Upload/loop_sf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/Upload/loop_sf.m -------------------------------------------------------------------------------- /Upload/main_inv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/Upload/main_inv.m -------------------------------------------------------------------------------- /Upload/plot_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/Upload/plot_res.m -------------------------------------------------------------------------------- /example/Maule/input/asc.lltnde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/example/Maule/input/asc.lltnde -------------------------------------------------------------------------------- /example/Maule/input/des.lltnde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/example/Maule/input/des.lltnde -------------------------------------------------------------------------------- /example/Maule/input/gps.lldet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/example/Maule/input/gps.lldet -------------------------------------------------------------------------------- /example/Maule/model/config.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/example/Maule/model/config.inv -------------------------------------------------------------------------------- /example/Nepal/input/gps.lldet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/example/Nepal/input/gps.lldet -------------------------------------------------------------------------------- /example/Nepal/input/nepal_asc.lltnde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/example/Nepal/input/nepal_asc.lltnde -------------------------------------------------------------------------------- /example/Nepal/input/nepal_des_t047.lltnde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/example/Nepal/input/nepal_des_t047.lltnde -------------------------------------------------------------------------------- /example/Nepal/input/nepal_des_t048.lltnde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/example/Nepal/input/nepal_des_t048.lltnde -------------------------------------------------------------------------------- /example/Nepal/model/config.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/example/Nepal/model/config.inv -------------------------------------------------------------------------------- /src/FastPeakFind.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/FastPeakFind.m -------------------------------------------------------------------------------- /src/MC_uncertainty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/MC_uncertainty.m -------------------------------------------------------------------------------- /src/boxcar_to_gaussian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/boxcar_to_gaussian.m -------------------------------------------------------------------------------- /src/calc_okada.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/calc_okada.m -------------------------------------------------------------------------------- /src/calc_okada_in.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/calc_okada_in.m -------------------------------------------------------------------------------- /src/compute_wave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/compute_wave.m -------------------------------------------------------------------------------- /src/config.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/config.inv -------------------------------------------------------------------------------- /src/fBi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/fBi.m -------------------------------------------------------------------------------- /src/fBi_in.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/fBi_in.m -------------------------------------------------------------------------------- /src/find_local_minmax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/find_local_minmax.m -------------------------------------------------------------------------------- /src/forward_patches.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/forward_patches.m -------------------------------------------------------------------------------- /src/generate_green_a.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/generate_green_a.m -------------------------------------------------------------------------------- /src/generate_green_g.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/generate_green_g.m -------------------------------------------------------------------------------- /src/generate_green_g3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/generate_green_g3.m -------------------------------------------------------------------------------- /src/generate_green_o.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/generate_green_o.m -------------------------------------------------------------------------------- /src/generate_green_p.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/generate_green_p.m -------------------------------------------------------------------------------- /src/generate_green_ramp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/generate_green_ramp.m -------------------------------------------------------------------------------- /src/generate_grid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/generate_grid.m -------------------------------------------------------------------------------- /src/generate_smoothness.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/generate_smoothness.m -------------------------------------------------------------------------------- /src/get_wavelength.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/get_wavelength.m -------------------------------------------------------------------------------- /src/inifile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/inifile.m -------------------------------------------------------------------------------- /src/loop_dip_depth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/loop_dip_depth.m -------------------------------------------------------------------------------- /src/loop_dip_depth_ridgecrest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/loop_dip_depth_ridgecrest.m -------------------------------------------------------------------------------- /src/loop_one_weighs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/loop_one_weighs.m -------------------------------------------------------------------------------- /src/loop_one_weighs_ridgecrest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/loop_one_weighs_ridgecrest.m -------------------------------------------------------------------------------- /src/loop_sf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/loop_sf.m -------------------------------------------------------------------------------- /src/loop_sf_ridgecrest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/loop_sf_ridgecrest.m -------------------------------------------------------------------------------- /src/loop_spec_fitting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/loop_spec_fitting.m -------------------------------------------------------------------------------- /src/main_inv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/main_inv.m -------------------------------------------------------------------------------- /src/main_inv_GNSS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/main_inv_GNSS.m -------------------------------------------------------------------------------- /src/main_inv_kilauea.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/main_inv_kilauea.m -------------------------------------------------------------------------------- /src/main_inv_save.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/main_inv_save.m -------------------------------------------------------------------------------- /src/main_inv_spec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/main_inv_spec.m -------------------------------------------------------------------------------- /src/mcmc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/mcmc.m -------------------------------------------------------------------------------- /src/mogi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/mogi.m -------------------------------------------------------------------------------- /src/patch_smooth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/patch_smooth.m -------------------------------------------------------------------------------- /src/patch_smooth_filt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/patch_smooth_filt.m -------------------------------------------------------------------------------- /src/plot_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/plot_data.m -------------------------------------------------------------------------------- /src/plot_patch_2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/plot_patch_2d.m -------------------------------------------------------------------------------- /src/plot_patches.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/plot_patches.m -------------------------------------------------------------------------------- /src/plot_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/plot_res.m -------------------------------------------------------------------------------- /src/plot_res_rq2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/plot_res_rq2.m -------------------------------------------------------------------------------- /src/plot_trace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/plot_trace.m -------------------------------------------------------------------------------- /src/points_to_line_old.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/points_to_line_old.m -------------------------------------------------------------------------------- /src/proj_gov2trace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/proj_gov2trace.m -------------------------------------------------------------------------------- /src/quatree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/quatree.m -------------------------------------------------------------------------------- /src/quatree_median.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/quatree_median.m -------------------------------------------------------------------------------- /src/read_inv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/read_inv.m -------------------------------------------------------------------------------- /src/rednoise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/rednoise.m -------------------------------------------------------------------------------- /src/subsample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/subsample.m -------------------------------------------------------------------------------- /src/test_inv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/test_inv.m -------------------------------------------------------------------------------- /src/test_model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/test_model.m -------------------------------------------------------------------------------- /src/trace2patch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/trace2patch.m -------------------------------------------------------------------------------- /src/utm2ll.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/utm2ll.m -------------------------------------------------------------------------------- /src/write_inv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/write_inv.m -------------------------------------------------------------------------------- /src/xyz2surface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohua-Eric-Xu/Geodetic_Inversion_Package_with_Matlab/HEAD/src/xyz2surface.m --------------------------------------------------------------------------------