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

📄 ft_split_line.m

📁 用matlab做的Frequency domain INterferomEter Simulation SoftwarE,在国外网站下的,还在研究中,不会用,有会用的回复我
💻 M
字号:
%---------------------------------------------------------------------  % function [cells]=FT_split_line(textline,delimiter)% % Splits a text line into separate cells%% textline: string, text input % delimiter: string filled with characters to separate%            (leave empty for 'any whitespace')% cells: array of cells containing the parts of the string%% Part of the SimTools package% Andreas Freise 04.07.08 afreise@googlemail.com%---------------------------------------------------------------------  function [cells]=FT_split_line(textline,delimiter)    baseid='FT_line_split';  if (~isstr(textline))    msgid=[baseid,':checkinarg'];    msg='first input argument must be a string';    error(msgid,msg);  end  if (~isstr(delimiter) && ~isempty(delimiter))    msgid=[baseid,':checkinarg'];    msg='second input argument must be a string';    error(msgid,msg);  end    % new Matlab versions can do 'split'. For the  % moment we use old code that runs also on former  % versions. TODO make an intelligent check for the  % MATLAB version  new=0;  if (new)    if (isempty(delimiter))      delimiter='\s+';    end    cells=regexp(textline, delimiter, 'split');  else    % following code provided by Bryan Barr    tmp_line=textline;    n=length(tmp_line);    for i=1:n      if (isempty(delimiter))        [tmp_cell,tmp_line]=strtok(tmp_line);      else        [tmp_cell,tmp_line]=strtok(tmp_line,delimiter);      end              cells{1,i}=strtrim(tmp_cell);      if (isempty(tmp_line))        break;      end    end  end    

⌨️ 快捷键说明

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