Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kylemrupp committed Sep 24, 2024
1 parent 84268e3 commit 865291a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion private/gen_choices.m
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
function block_choices = gen_choices(ntrial)
% ntrial=36;
choices = [ 1 2; 2 3; 1 3];
block_choices = Shuffle(repmat(choices,ntrials/length(choices),1),2);
block_choices = Shuffle(repmat(choices,ntrial/length(choices),1),2);
end
%! block_choices = gen_choices(36);
%! assert(all(size(block_choices) == [36 2]))
Expand Down

0 comments on commit 865291a

Please sign in to comment.