delete_files.m
来自「关于混沌系统的李氏指数计算等混沌系统中重要参数计算的代码」· M 代码 · 共 23 行
M
23 行
function delete_files;
% Use UIGETFILE to allow for the selection of a dynamical system.
global matdspath;
cd(matdspath.systems);
[filename, pathname] = uigetfile( ...
{'*.mds', 'MATDS-Files (*.mds)'; ...
}, ...
'Select dynamical system for deleting');
% If "Cancel" is selected then return
if ~isequal([filename,pathname],[0,0])
% Otherwise construct the fullfilename and Check and load the file.
File = fullfile(pathname,filename);
uu=findstr(File,'.mds');
if isempty(uu)==0
File=File(1:(uu( length(uu) )-1) );
end;
Check_And_Delete(File);
end;
cd(matdspath.main);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?