├── .gitignore ├── FMUT_release_notes.md ├── F_sig_raster.m ├── FclustGND.m ├── FclustGRP.m ├── Fclust_corr.m ├── FfdrGND.m ├── FfdrGRP.m ├── FmaxGND.m ├── FmaxGRP.m ├── Fmax_corr.m ├── Ftest2xls.m ├── LICENSE.txt ├── README.md ├── add_poi_path.m ├── calc_Fclust.m ├── calc_Fmax.m ├── calc_param_ANOVA.m ├── epsGG.m ├── epsGG_license.txt ├── estimate_epsilon.m ├── flt2GND.m ├── fmut.py ├── format_xls.m ├── get_effects.m ├── get_int_res.m ├── get_mean_amplitude.m ├── get_poi_paths.m ├── perm_crANOVA.m ├── perm_rbANOVA.m ├── perm_spANOVA.m ├── poi_library ├── apache_poi_library_LICENSE ├── dom4j-1.6.1.jar ├── poi-3.8-20120326.jar ├── poi-ooxml-3.8-20120326.jar ├── poi-ooxml-schemas-3.8-20120326.jar ├── stax-api-1.0.1.jar └── xmlbeans-2.3.0.jar ├── py_addpath.m ├── pyinstaller ├── fmut_pyinstaller.cmd └── py_fmut_environment.yml ├── reduce_data.m ├── report_results.m ├── testing ├── A_setupTest.m ├── B_FmaxGNDTest.m ├── C_FclustGNDTest.m ├── D_FfdrGNDTest.m ├── E_FmaxGRPTest.m ├── F_FclustGRPTest.m ├── G_FfdrGRPTest.m ├── H_VariousTest.m ├── I_ANOVATest.m ├── external_check.m ├── simulated_data_rm.m └── simulated_data_sp.m ├── ttest2xls.m ├── xlwrite.m └── xlwrite_license.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/.gitignore -------------------------------------------------------------------------------- /FMUT_release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/FMUT_release_notes.md -------------------------------------------------------------------------------- /F_sig_raster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/F_sig_raster.m -------------------------------------------------------------------------------- /FclustGND.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/FclustGND.m -------------------------------------------------------------------------------- /FclustGRP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/FclustGRP.m -------------------------------------------------------------------------------- /Fclust_corr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/Fclust_corr.m -------------------------------------------------------------------------------- /FfdrGND.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/FfdrGND.m -------------------------------------------------------------------------------- /FfdrGRP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/FfdrGRP.m -------------------------------------------------------------------------------- /FmaxGND.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/FmaxGND.m -------------------------------------------------------------------------------- /FmaxGRP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/FmaxGRP.m -------------------------------------------------------------------------------- /Fmax_corr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/Fmax_corr.m -------------------------------------------------------------------------------- /Ftest2xls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/Ftest2xls.m -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/README.md -------------------------------------------------------------------------------- /add_poi_path.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/add_poi_path.m -------------------------------------------------------------------------------- /calc_Fclust.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/calc_Fclust.m -------------------------------------------------------------------------------- /calc_Fmax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/calc_Fmax.m -------------------------------------------------------------------------------- /calc_param_ANOVA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/calc_param_ANOVA.m -------------------------------------------------------------------------------- /epsGG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/epsGG.m -------------------------------------------------------------------------------- /epsGG_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/epsGG_license.txt -------------------------------------------------------------------------------- /estimate_epsilon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/estimate_epsilon.m -------------------------------------------------------------------------------- /flt2GND.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/flt2GND.m -------------------------------------------------------------------------------- /fmut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/fmut.py -------------------------------------------------------------------------------- /format_xls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/format_xls.m -------------------------------------------------------------------------------- /get_effects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/get_effects.m -------------------------------------------------------------------------------- /get_int_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/get_int_res.m -------------------------------------------------------------------------------- /get_mean_amplitude.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/get_mean_amplitude.m -------------------------------------------------------------------------------- /get_poi_paths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/get_poi_paths.m -------------------------------------------------------------------------------- /perm_crANOVA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/perm_crANOVA.m -------------------------------------------------------------------------------- /perm_rbANOVA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/perm_rbANOVA.m -------------------------------------------------------------------------------- /perm_spANOVA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/perm_spANOVA.m -------------------------------------------------------------------------------- /poi_library/apache_poi_library_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/poi_library/apache_poi_library_LICENSE -------------------------------------------------------------------------------- /poi_library/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/poi_library/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /poi_library/poi-3.8-20120326.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/poi_library/poi-3.8-20120326.jar -------------------------------------------------------------------------------- /poi_library/poi-ooxml-3.8-20120326.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/poi_library/poi-ooxml-3.8-20120326.jar -------------------------------------------------------------------------------- /poi_library/poi-ooxml-schemas-3.8-20120326.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/poi_library/poi-ooxml-schemas-3.8-20120326.jar -------------------------------------------------------------------------------- /poi_library/stax-api-1.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/poi_library/stax-api-1.0.1.jar -------------------------------------------------------------------------------- /poi_library/xmlbeans-2.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/poi_library/xmlbeans-2.3.0.jar -------------------------------------------------------------------------------- /py_addpath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/py_addpath.m -------------------------------------------------------------------------------- /pyinstaller/fmut_pyinstaller.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/pyinstaller/fmut_pyinstaller.cmd -------------------------------------------------------------------------------- /pyinstaller/py_fmut_environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/pyinstaller/py_fmut_environment.yml -------------------------------------------------------------------------------- /reduce_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/reduce_data.m -------------------------------------------------------------------------------- /report_results.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/report_results.m -------------------------------------------------------------------------------- /testing/A_setupTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/testing/A_setupTest.m -------------------------------------------------------------------------------- /testing/B_FmaxGNDTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/testing/B_FmaxGNDTest.m -------------------------------------------------------------------------------- /testing/C_FclustGNDTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/testing/C_FclustGNDTest.m -------------------------------------------------------------------------------- /testing/D_FfdrGNDTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/testing/D_FfdrGNDTest.m -------------------------------------------------------------------------------- /testing/E_FmaxGRPTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/testing/E_FmaxGRPTest.m -------------------------------------------------------------------------------- /testing/F_FclustGRPTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/testing/F_FclustGRPTest.m -------------------------------------------------------------------------------- /testing/G_FfdrGRPTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/testing/G_FfdrGRPTest.m -------------------------------------------------------------------------------- /testing/H_VariousTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/testing/H_VariousTest.m -------------------------------------------------------------------------------- /testing/I_ANOVATest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/testing/I_ANOVATest.m -------------------------------------------------------------------------------- /testing/external_check.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/testing/external_check.m -------------------------------------------------------------------------------- /testing/simulated_data_rm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/testing/simulated_data_rm.m -------------------------------------------------------------------------------- /testing/simulated_data_sp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/testing/simulated_data_sp.m -------------------------------------------------------------------------------- /ttest2xls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/ttest2xls.m -------------------------------------------------------------------------------- /xlwrite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/xlwrite.m -------------------------------------------------------------------------------- /xlwrite_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericcfields/FMUT/HEAD/xlwrite_license.txt --------------------------------------------------------------------------------