?? generateemptyfile.m
字號:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function success = generateemptyfile(fileName)
%GENERATEEMPTYFILE Generate empty file.
% GENERATEEMPTYFILE(FILE) generates an empty file with the given name.
%
% Markus Buehren
% Last modified 08.01.2009
%
% See also FOPEN.
try
[fid, message] = fopen(fileName, 'w');
catch
fid = -1;
% do nothing
end
if fid == -1
disp(message);
success = 0;
else
fclose(fid);
success = 1;
end
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -