load_formant.m
来自「这是一个用于语音信号处理的工具箱」· M 代码 · 共 32 行
M
32 行
%Callback program for the ASCII/MATLAB popup button in the source window
%
%Author Karthik
%Loads a formant file created by this program
%Please note that the only mat files that can be loaded are the ones that
%have been created using this program. Other MAT files will produce errors
%
%
%Load the formant file
%
cwd=pwd;
[fname pathname]=uigetfile('*.mat','Load formant file');
if fname ~= 0
S=sprintf('cd %s',cwd);
eval(S);
S=sprintf('Load %s%s as formant file',pathname,fname);
disp(S);
S=sprintf('load %s%s',pathname,fname);
eval(S);
S=sprintf('cd %s',cwd);
eval(S);
Ff1 = Ff1; %Make copies; this is not necessary since the variables were saved as Ff1 and Fb1
Fb1 = Fb1; %Make copies
else
disp('Please load a formant file');
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?