Artifact 061a293596f5a6789a3aca408c54cba3fe4df8d3bffc019b947dc70224c188e4:
- Executable file mttroot/mtt/bin/trans/m/mtt_strip_name.m — part of check-in [f5ee792cac] at 1999-10-19 02:01:22 on branch origin/master — Initial revision (user: gawthrop@users.sourceforge.net, size: 328) [annotate] [blame] [check-ins using]
function stripped_name = mtt_strip_name (name) ## usage: stripped_name = mtt_strip_name (name) ## ## Removes blanks and [] from a port name stripped_name = deblank(name); # remove blanks stripped_name = stripped_name(2:length(stripped_name)-1); stripped_name = deblank(stripped_name); # remove blanks endfunction