File mttroot/mtt/bin/trans/m/mtt_fullname.m artifact 95049fcb51 part of check-in 5d73f2403a
function fullname = mtt_fullname (subname,compname) ## usage: fullname = mtt_fullname (subname,compname) ## ## Finds the standard mtt name of the component delim = "__"; fullname = sprintf("%s%s%s", subname, delim, compname); endfunction