Differences From Artifact [4a6bbeb765]:
- File
mttroot/mtt/lib/comp/simple/Sensor_seqn.m
— part of check-in
[06129d0cd0]
at
2003-03-25 10:24:06
on branch origin/master
— SS_seqn Port SS now has forced "external,external" attribute
Sensor_seqn has temporary fix which leads to redundant equations (user: gawthrop@users.sourceforge.net, size: 401) [annotate] [blame] [check-ins using] [more...]
To Artifact [60348ae058]:
- 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]
1 2 3 4 5 6 7 8 9 10 11 12 | 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 | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 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 |