?? pitch2.m
字號:
%fractal pitch refine
%Precondition: sig is the 0~500Hz of the voice signal;int_pitch and r is a two elments
% array.
%Postcondition: p and r
%Input:
% sig(input signal)
% intp(integer pitch)
%output:
% p(fractal pitch)
% r(the corresponding correlation)
function [p,r]=pitch2(sig,intp)
low=intp-5;
if low<20
low=20;
end
up=intp+5;
if up>160
up=160;
end
p=intpitch(sig,up,low);
[p,r]=fpr(sig,p);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -