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

📄 loadall.m

📁 用于非线性时间序列分析的软件包。可用于计算:时间延迟重构
💻 M
字号:
function status = loadall(cwd, filter, handles)% tstool/loadall% load all filenames with extensions matching filter in current directory cwd% the names are inserted into the tstool file listif ((cwd(end) == '/') | (cwd(end) == '\')) & (length(cwd) > 1)	cwd = cwd(end-1);endlhandle = handles.lboxhandle;found = 0;d = dir(cwd);cwd = fileparts(cwd);for i=1:length(d)	filename = d(i).name;	[path,name,ext,ver] = fileparts(filename);	if strcmp(cwd, '.')		fullname = filename;		% keine laestigen Punkte vor Files im lokalen Verzeichnis	else		fullname = fullfile(cwd,[name ext]);	end	if strcmp(filter, ext) | isempty(filter)		if exist(fullname, 'file')					status = linsert(fullname, handles);			if status == 0				found = found + 1;			end		end	endendif found == 0	status = 'no matching files found';else	status = 0; 	% OKend

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -