Skip to content

Commit

Permalink
Updated run script
Browse files Browse the repository at this point in the history
  • Loading branch information
JesperLH committed Jan 28, 2019
1 parent a48cf6d commit 6d5c928
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions run_experiments_eusipco.m
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@
addpath(genpath('../tools'))

elapsed_time = zeros(6,1)*nan;
for i = 5:6
for j = 2:2
t0 = tic;
switch i
switch j
case 1
experiments_aminoacid
case 2
experiments_aminoacid_modelorder
perm_idx = perms(1:3);
for p = 1:size(perm_idx,1)
experiments_aminoacid_modelorder(perm_idx(p,:))
end
case 3
experiments_eusipco_tensortrain_nonoise
case 4
Expand All @@ -20,5 +23,5 @@
case 6
experiments_eusipco_unknownD
end
elapsed_time(i) = toc(t0);
elapsed_time(j) = toc(t0);
end

0 comments on commit 6d5c928

Please sign in to comment.