├── .gitattributes ├── .gitignore ├── GL-HOSVD ├── glhosvd.m └── hosvd2.m ├── HOSVD ├── hosvd.m ├── ndim_fold.m ├── ndim_unfold.m ├── svdtrunc.m ├── tprod.m └── wshift.m ├── RiceOptVST ├── Legal_Notice.txt ├── README.txt ├── Rice_VST_A.mat ├── Rice_VST_B.mat ├── demo_riceVST_denoising.m ├── function_stdEst.m ├── ricePairInversion.m ├── riceVST.m ├── riceVST_EUI.m └── riceVST_sigmaEst.m ├── data ├── in_vivo_data │ ├── 6dir_b1000_NSA10.mat │ ├── bvalue.mat │ ├── gradient.mat │ └── mask_slice_4th.mat └── simulation │ ├── Mask_simu_b2000.mat │ └── TestData_Rician_SingleShellb2000.mat ├── demo_in_vivo_data_glhosvd.m ├── demo_simulation_glhosvd.m └── tensor_fit ├── PSNR.m ├── RMSE.m ├── dtiLogLinear_LAM.m ├── ricernd.m ├── tensor_est.m ├── tensor_est3D.m ├── tensor_fitting_full.m └── tensor_fitting_half.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/.gitignore -------------------------------------------------------------------------------- /GL-HOSVD/glhosvd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/GL-HOSVD/glhosvd.m -------------------------------------------------------------------------------- /GL-HOSVD/hosvd2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/GL-HOSVD/hosvd2.m -------------------------------------------------------------------------------- /HOSVD/hosvd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/HOSVD/hosvd.m -------------------------------------------------------------------------------- /HOSVD/ndim_fold.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/HOSVD/ndim_fold.m -------------------------------------------------------------------------------- /HOSVD/ndim_unfold.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/HOSVD/ndim_unfold.m -------------------------------------------------------------------------------- /HOSVD/svdtrunc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/HOSVD/svdtrunc.m -------------------------------------------------------------------------------- /HOSVD/tprod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/HOSVD/tprod.m -------------------------------------------------------------------------------- /HOSVD/wshift.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/HOSVD/wshift.m -------------------------------------------------------------------------------- /RiceOptVST/Legal_Notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/RiceOptVST/Legal_Notice.txt -------------------------------------------------------------------------------- /RiceOptVST/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/RiceOptVST/README.txt -------------------------------------------------------------------------------- /RiceOptVST/Rice_VST_A.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/RiceOptVST/Rice_VST_A.mat -------------------------------------------------------------------------------- /RiceOptVST/Rice_VST_B.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/RiceOptVST/Rice_VST_B.mat -------------------------------------------------------------------------------- /RiceOptVST/demo_riceVST_denoising.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/RiceOptVST/demo_riceVST_denoising.m -------------------------------------------------------------------------------- /RiceOptVST/function_stdEst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/RiceOptVST/function_stdEst.m -------------------------------------------------------------------------------- /RiceOptVST/ricePairInversion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/RiceOptVST/ricePairInversion.m -------------------------------------------------------------------------------- /RiceOptVST/riceVST.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/RiceOptVST/riceVST.m -------------------------------------------------------------------------------- /RiceOptVST/riceVST_EUI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/RiceOptVST/riceVST_EUI.m -------------------------------------------------------------------------------- /RiceOptVST/riceVST_sigmaEst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/RiceOptVST/riceVST_sigmaEst.m -------------------------------------------------------------------------------- /data/in_vivo_data/6dir_b1000_NSA10.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/data/in_vivo_data/6dir_b1000_NSA10.mat -------------------------------------------------------------------------------- /data/in_vivo_data/bvalue.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/data/in_vivo_data/bvalue.mat -------------------------------------------------------------------------------- /data/in_vivo_data/gradient.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/data/in_vivo_data/gradient.mat -------------------------------------------------------------------------------- /data/in_vivo_data/mask_slice_4th.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/data/in_vivo_data/mask_slice_4th.mat -------------------------------------------------------------------------------- /data/simulation/Mask_simu_b2000.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/data/simulation/Mask_simu_b2000.mat -------------------------------------------------------------------------------- /data/simulation/TestData_Rician_SingleShellb2000.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/data/simulation/TestData_Rician_SingleShellb2000.mat -------------------------------------------------------------------------------- /demo_in_vivo_data_glhosvd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/demo_in_vivo_data_glhosvd.m -------------------------------------------------------------------------------- /demo_simulation_glhosvd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/demo_simulation_glhosvd.m -------------------------------------------------------------------------------- /tensor_fit/PSNR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/tensor_fit/PSNR.m -------------------------------------------------------------------------------- /tensor_fit/RMSE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/tensor_fit/RMSE.m -------------------------------------------------------------------------------- /tensor_fit/dtiLogLinear_LAM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/tensor_fit/dtiLogLinear_LAM.m -------------------------------------------------------------------------------- /tensor_fit/ricernd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/tensor_fit/ricernd.m -------------------------------------------------------------------------------- /tensor_fit/tensor_est.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/tensor_fit/tensor_est.m -------------------------------------------------------------------------------- /tensor_fit/tensor_est3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/tensor_fit/tensor_est3D.m -------------------------------------------------------------------------------- /tensor_fit/tensor_fitting_full.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/tensor_fit/tensor_fitting_full.m -------------------------------------------------------------------------------- /tensor_fit/tensor_fitting_half.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XinyuanZhang719/gl-hosvd/HEAD/tensor_fit/tensor_fitting_half.m --------------------------------------------------------------------------------