Skip to content

Commit

Permalink
Merge branch 'pr/33'
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaDeSiena committed Jun 4, 2024
2 parents 4f9e2cb + 71a874f commit 73d37c9
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 1 deletion.
Binary file modified Murat_inputMSH.mlx
Binary file not shown.
Binary file modified Murat_inputRomania.mlx
Binary file not shown.
Binary file modified Murat_inputToba.mlx
Binary file not shown.
4 changes: 3 additions & 1 deletion bin/Murat_data.m
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
QcM = Murat.input.QcMeasurement;
lapseTimeMethod = Murat.input.lapseTimeMethod;
maxtravel = Murat.input.maxtravel;
mintravel = Murat.input.mintravel;

% Set up variables to save
locationDeg = zeros(lengthData,6);
Expand Down Expand Up @@ -125,7 +126,8 @@
peakDelay_i,lapseTimeMethod);

if (cursorCodaEnd_i - cursorCodaStart_i) < (tWm*srate_i)-2 || ...
(pktime_i-originTime_i)>maxtravel
(pktime_i-originTime_i)>maxtravel || ...
(pktime_i-originTime_i)<mintravel

locationM(i,:) = locationM_i;
theoreticalTime(i,1) = theoreticalTime_i;
Expand Down

0 comments on commit 73d37c9

Please sign in to comment.