Artifact 38b510c1448d4d9ae7893f3a725ffdab6c55f92b8114fd0ba5d3b616e59ec6f9:
- File mttroot/mtt/bin/trans/m/mtt_name2names.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: 272) [annotate] [blame] [check-ins using] [more...]
function names = mtt_name2names (name) ## usage: names = mtt_name2names (name) ## ## Converts standard mtt name to an array of subsystem names ## Copyright (C) 2003 by Peter J. Gawthrop delim ="__"; # MTT delimiter names = split(name,delim); endfunction