From 865291a463527e5ae8b11c4b5e1a8a9c5f612079 Mon Sep 17 00:00:00 2001 From: kylemrupp Date: Tue, 24 Sep 2024 14:21:04 -0400 Subject: [PATCH] typo --- private/gen_choices.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/private/gen_choices.m b/private/gen_choices.m index e5cd05a..c4c4f12 100644 --- a/private/gen_choices.m +++ b/private/gen_choices.m @@ -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]))