⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 delete_files.m

📁 关于混沌系统的李氏指数计算等混沌系统中重要参数计算的代码
💻 M
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -