Skip to content

Commit

Permalink
for LOCAL_ALIGN step, make window go from ymin:ymax, not padded ymin:…
Browse files Browse the repository at this point in the history
…ymax. Otherwise seeing error with 062620_P4P62HP_stability dataset.
  • Loading branch information
rhiju committed Jul 6, 2020
1 parent 4bd8848 commit f1ff6de
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Scripts/quick_look.m
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,9 @@
% piece-wise linear transformation.

if (LOCAL_ALIGN)
ywindow = ymin_pad:ymax_pad;
% padding seems produces weird behavior in some data sets.
% ywindow = ymin_pad:ymax_pad;
ywindow = ymin:ymax;
[ d(ywindow, :), d_ref(ywindow, :) ] = align_by_DP_using_ref( d(ywindow, :), d_ref(ywindow, :) );
end

Expand Down

0 comments on commit f1ff6de

Please sign in to comment.