Skip to content

Commit c226491

Browse files
committed
Merge branch 'dev_nolang'
2 parents 6013884 + e98bb18 commit c226491

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

code/guicode/AC.fig

0 Bytes
Binary file not shown.

code/guicode/AC.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474

7575
% Edit the above text to modify the response to help AC
7676

77-
% Last Modified by GUIDE v2.5 12-Dec-2021 16:43:30
77+
% Last Modified by GUIDE v2.5 12-Dec-2021 18:01:28
7878

7979
% Begin initialization code - DO NOT EDIT
8080
gui_Singleton = 1;
@@ -5694,4 +5694,4 @@ function menu_sound_Callback(hObject, eventdata, handles)
56945694
end
56955695
end
56965696
end
5697-
guidata(hObject, handles);
5697+
guidata(hObject, handles);

code/package/wavelet/wavecoh_update_xwt.m

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ try figure(handles.figxwt)
6262
if plot_phase
6363
hold on
6464
aWxy=angle(Wxy);
65-
65+
aWxy(sig95<1) = nan;
66+
%aWxy(Rsq<wtcthreshold) = nan;
6667
phs_dt=round(length(t)/ArrowDensity(1));
6768
tidx=max(floor(phs_dt/2),1):phs_dt:length(t);
6869

@@ -84,6 +85,7 @@ try figure(handles.figxwt)
8485
if plot_sl
8586
hold on
8687
[c,h] = contour(t,log2(period),sig95,[1 1],'k');
88+
%[c,h] = contour(t,log2(period),sig95,'k');
8789
set(h,'linewidth',2)
8890
hold off
8991
end

0 commit comments

Comments
 (0)