Overview
Comment: | Initial revision |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
72b3930c4d6701c2fbc8ddd410fb9329 |
User & Date: | gawthrop@users.sourceforge.net on 2000-07-13 17:13:59 |
Other Links: | branch diff | manifest | tags |
Context
2000-07-20
| ||
07:46:07 | Version 4.3 check-in: 25712e82bf user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2000-07-13
| ||
17:13:59 | Initial revision check-in: 72b3930c4d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
07:21:12 | Interface to Octave Control Systems Toolbox (OCST) - mtt2sys.m check-in: 457475f9b6 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/m/mtt.m version [6a809fff4d].
> > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 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 |