Artifact 60348ae0581de838664ab153638c00e48731a6e97f09b673c8ada12a759184f4:
- File mtt/lib/comp/simple/Sensor_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: 407) [annotate] [blame] [check-ins using] [more...]
- File mttroot/mtt/lib/comp/simple/Sensor_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: 407) [annotate] [blame] [check-ins using]
function LHS = Sensor_seqn (attribute,name) ## usage: LHS = Sensor_seqn (attribute,name) ## ## Write the LHS of a sensor equation if strcmp(attribute,"external") LHS = sprintf("MTTy_%s", name); elseif strcmp(attribute,"internal") LHS = sprintf("MTTy_%s", name); else error(sprintf("attribute ""%s"" not appropriate for a " ... "source"), attribute); endif endfunction