基于SCILAB的The Genetic Algorithm Toolbox for SCILAB (GATS)工具箱

源代码在线查看: file2fun.sci

软件大小: 622 K
上传用户: jun604001464
关键词: SCILAB Algorithm Genetic Toolbox
下载地址: 免注册下载 普通下载 VIP

相关代码

				function [FunName]=File2Fun(FileName) // the file's name to function name
				FunName=stripblanks(FileName);		// strip blank
				len=length(FunName);			
				if (len 				   return;
				end;
				postfix=part(FunName,[len-3:len]);	// the extend of file name
				postfix=convstr(postfix,'l');
				if ( strcmp(postfix,'.sci') ) then
				    FunName=part(FileName,[1:len-4]);
				end
							

相关资源