?? pcshf.m
字號:
% Function : shift the fundamental pitch of the GCI display using the mouse.
% pcshf will shift the p0 up or down by clicking the mouse.
%
% pcshf.m is a call_function executed by "pitch_sh" on figure(Pset_f).
%------------------------------%
% change the fundamental pitch %
%------------------------------%
val=get(pitch_sh,'Value');
set(pitch_pts,'String',num2str(val));
% shift fundamental pitch
p01=val;
figure(Pcontour_f);
ax=gci1(1:length(gci1)-1);
plot(ax,diff(gci1),'k'); hold on;
plot(ax,ones(1,length(ax))*p01,'b.'); hold off;
axis([gci1(1) max(gci1) 0.5*p01 1.5*p01 ]);
title('Pitch Contour (black line) and Fundamental Pitch Period (blue line)');
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -