📄 formant_save.m
字号:
%Callback function for the save button in the formant synthesis window
% Author Karthik 2/98
%Saves the formant file in MAT format only. Since the formants are multi dimensional
%arrays, the ascii format is not suited to save these variables. However, if the
%user wants to he may change the program to save the variables in ascii format.
cwd=pwd;
[fname pathname]=uiputfile('*.mat','Save file (Matlab)');
S=sprintf('cd %s',cwd);
eval(S);
if fname ~= 0
S=sprintf('Saving data into %s (MAT format)',fname);
disp(S);
S=sprintf('save %s%s Ff1 Fb1',pathname,fname);
eval(S);
else
fname='temp';
pathname='.';
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -