From 277ff4136bf68ba69781b19976f40e1184b5fd27 Mon Sep 17 00:00:00 2001 From: Remi Gau Date: Wed, 11 Dec 2019 18:36:37 +0100 Subject: [PATCH] fix typo --- display_lmm_results.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/display_lmm_results.m b/display_lmm_results.m index a8fbcb5..aca1f85 100644 --- a/display_lmm_results.m +++ b/display_lmm_results.m @@ -159,9 +159,11 @@ function display_lmm_results(DO) case 1 name_param = {'ROI1_cst', 'ROI2_cst'}; reg_of_interest = [1 3]; + submodel.s_param = {'cst', 'cst'}; case 2 name_param = {'ROI1_lin', 'ROI2_lin'}; reg_of_interest = [2 4]; + submodel.s_param = {'lin', 'lin'}; end Y = model.Y(any(model.X(:,reg_of_interest), 2)); @@ -179,7 +181,6 @@ function display_lmm_results(DO) submodel.print2file = 1; submodel.fid = fid; submodel.ROIs = strsplit(model.ROIs, ' - '); - submodel.s_param = {'cst', 'lin'}; submodel.X = X; submodel.Y = Y; c = [1 1];