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

📄 ft_write_kat_constant.m

📁 用matlab做的Frequency domain INterferomEter Simulation SoftwarE,在国外网站下的,还在研究中,不会用,有会用的回复我
💻 M
字号:
%---------------------------------------------------------------------  % function [block] = FT_write_kat_constant(block,constant_name, value)% % Overwrite the value of the given constant by a new value%% block: block structure % constant_name: string, name of the constant% value: new value of the constant (string or numerical value)%% Part of the SimTools package% Andreas Freise 17.06.08 afreise@googlemail.com%---------------------------------------------------------------------  function [block] = FT_write_kat_constant(block,constant_name, value)  baseid='FT_write_kat_constant';      if (~isstruct(block))    msgid=[baseid,':checkinarg'];    result='first input argument must be a block structure';    error(msgid,result);  end    if (~isstr(constant_name))    msgid=[baseid,':checkinarg'];    result='second input argument must be a string';    error(msgid,result);  end    bl=length(block);  if (bl>1)    msgid=[baseid,':checksize'];    error(msgid,'first argument must be single FTblock');  end    lines=[];  tmp_lines=FT_find_element_in_active_block(block,2,constant_name);  % check whether we really found the constant  for i=1:length(tmp_lines)    [element,estart,eend]=FT_get_element_from_line(block.txt_lines(tmp_lines(i)),1);    if (strcmp(element,'const'))      lines=[lines,tmp_lines(i)];    end  end    if (length(lines)<1)    msgid=[baseid,':find_constant'];    error(msgid,'could not find named constant');  end  if (length(lines)>1)    msgid=[baseid,':find_constant'];    error(msgid,'found two instances of named constant');  end  % replacing old value by new  block.txt_lines(lines)={FT_replace_value_in_line(block.txt_lines(lines),3,value)};    

⌨️ 快捷键说明

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