Artifact 6a809fff4d2dd0a6f854ac81e1beb8078ceeec8cf001570eac053d754f8e7e9b:
- Executable file mttroot/mtt/bin/trans/m/mtt.m — part of check-in [72b3930c4d] at 2000-07-13 17:13:59 on branch origin/master — Initial revision (user: gawthrop@users.sourceforge.net, size: 406) [annotate] [blame] [check-ins using]
function mtt (sys,rep,lang) ## usage: mtt (system[,representation,language]) ## ## Invokes mtt form octave to generate system_representation.language if nargin<2 rep='sm'; endif if nargin<3 lang='m'; endif filename = sprintf("%s_%s.%s", sys, rep, lang); if !exist(filename) command = sprintf("mtt -q %s %s %s", sys, rep, lang); system(command); endif endfunction