Skip to content

Commit

Permalink
fixed bug in test_script
Browse files Browse the repository at this point in the history
  • Loading branch information
acp29 committed Sep 26, 2023
1 parent 0fcc59e commit 3c98d5f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/test_script.m
Original file line number Diff line number Diff line change
Expand Up @@ -718,9 +718,10 @@
randtest2 (X, Y, [], []);
X = randn (9,1);
Y = randn (9,1);
pval5 = randtest2 (X, Y, false, [], 1);
pval6 = randtest2 (X, Y, false, [], 1);
pval6 = randtest2 (X, Y, false, [], []);
pval5 = randtest2 (X, Y, false, 5000);
pval5 = randtest2 (X, Y, false, [], [], 1);
pval6 = randtest2 (X, Y, false, [], @(X, Y) mean (X) - mean (Y), 1);
pval7 = randtest2 (X, Y, false, [], @(A, B) log (var (A) ./ var (B)), 1);

% credint:test:1
randn ('seed', 1);
Expand Down

0 comments on commit 3c98d5f

Please sign in to comment.