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

📄 ft_replace_value_in_line.m

📁 用matlab做的Frequency domain INterferomEter Simulation SoftwarE,在国外网站下的,还在研究中,不会用,有会用的回复我
💻 M
字号:
%---------------------------------------------------------------------  % function [outstring] = FT_replace_value_in_line(instring, position, value)% % Replaces one element in a string by a new value. The element% is indicated by the integer position%% instring: string, containing one line of text from a text file% position: integers, specifying which elements should%            be places% value: double or string which will be inserted into string% outstring: string, containing new element%% Part of the SimTools package% Andreas Freise 22.05.08 afreise@googlemail.com%---------------------------------------------------------------------  function [outstring] = FT_replace_value_in_line(instring, position, value)  % base string for error message id  baseid='FT_replace_value_in_line';  if (iscell(instring))    instring=cell2mat(instring);  end    if (~isstr(instring))    msgid=[baseid,':checkinarg'];    msg='first input argument must be a text line';    error(msgid,msg);  end    pos=int8(position);  if(pos~=position)    msgid=[baseid,':checkinarg'];    msg='second input argument must be of type integer';    error(msgid,msg);      end    [element,estart,eend]=FT_get_element_from_line(instring, position);    if (estart==1)    str1='';  else    str1=instring(1:estart);  end    if (isstr(value))    str2=value;  else    str2=num2str(value);  end    outstring=[str1,str2,instring(eend:length(instring))];  

⌨️ 快捷键说明

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