Design a user study

  • Decide the sequence of the scenarios for the user study
  • Data Analysis
    • Related MATLAB functions : anova1, anovan, dlmread
      clear all;
      close all;
      
      data = dlmread('report.out', '\t');
      g_subject = data(:,1);
      g_group = data(:,2);
      g_task = data(:,3);
      g_subtask = data(:,4);
      time = data(:,5);
      
      anova1(time, g_group);
      

Back