Artifact 1f9cfc8d6cf08e0c62073bbdb78eb99208c90d60f32ab1fe7f78b47a6e19d6c4:
- File mtt/bin/trans/m/mtt_other_causality.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: 452) [annotate] [blame] [check-ins using] [more...]
- File mttroot/mtt/bin/trans/m/mtt_other_causality.m — part of check-in [0e41d1033c] at 2003-03-13 15:32:37 on branch origin/master — Octave m files for generating sorted equations _sese.r (user: gawthrop@users.sourceforge.net, size: 452) [annotate] [blame] [check-ins using]
function other = mtt_other_causality (causality) ## usage: other = mtt_other_causality (causality) ## ## causality = deblank(causality); if strcmp(causality,"effort"); other = "flow"; elseif strcmp(causality,"flow"); other = "effort"; elseif strcmp(causality,"e"); other = "f"; elseif strcmp(causality,"f"); other = "e"; else error(sprintf("Causality \"%s\" not recognised",causality)); endif endfunction