Artifact 7ea48608363690d4224473ab01cfe5932ccc8c988a6800d01a24294d40129261:
- File mtt/lib/comp/simple/Source_seqn.m — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 382) [annotate] [blame] [check-ins using] [more...]
- File mttroot/mtt/lib/comp/simple/Source_seqn.m — part of check-in [fa2f8429aa] at 2014-08-02 16:36:14 on branch origin/master — Replaced continuation character in lib m files, except PPP and Control (user: geraint@users.sourceforge.net, size: 382) [annotate] [blame] [check-ins using]
function RHS = Source_seqn (attribute,name) ## usage: RHS = Source_seqn (attribute,name) ## ## Write the RHS of a source equation if strcmp(attribute,"external") RHS = sprintf("MTTu_%s",name); elseif strcmp(attribute,"internal") error(sprintf("attribute ""internal"" not appropriate for a " "source")); else RHS = attribute; endif endfunction