We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3e99ca commit 5f2766eCopy full SHA for 5f2766e
1 file changed
+nla/+inputField/Behavior.m
@@ -383,12 +383,12 @@ function button_sub_covClickedCallback(obj, ~)
383
end
384
385
function button_view_design_mtxClickedCallback(obj)
386
-
+ labels = [obj.behavior_full.Properties.VariableNames(obj.behavior_idx)];
387
if ~islogical(obj.covariates_idx)
388
- labels = {obj.table.ColumnName{obj.covariates_idx}};
389
- nla.gfx.drawDesignMtx(obj.covariates, labels);
390
391
+ labels = [labels; obj.table.ColumnName(obj.covariates_idx)];
+ nla.gfx.drawDesignMtx([obj.behavior, obj.covariates], labels);
+ else
+ nla.gfx.drawDesignMtx(obj.behavior, labels);
392
393
394
0 commit comments