Overview
Comment: | Reads the cbg data structure form a file |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
772b1cdd4e6f1cd1a2a682acd83fd4f1 |
User & Date: | gawthrop@users.sourceforge.net on 2003-03-14 12:49:50 |
Other Links: | branch diff | manifest | tags |
Context
2003-03-14
| ||
14:03:28 | Fixed error message check-in: cacc8a5875 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:49:50 | Reads the cbg data structure form a file check-in: 772b1cdd4e user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:45:16 | Now uses mtt_cbg check-in: 719f2840c1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/m/mtt_cbg.m version [7f6f970f07].
> > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | function cbg = mtt_cbg (name) ## usage: cbg = mtt_cbg (name) ## ## Gets the cbg (causal bond graph) structure for system name ## Copyright (C) 2003 by Peter J. Gawthrop ## File name cbg_file = sprintf("%s_cbg",name); if (exist(cbg_file)==0) error(sprintf("mtt_component_eqn: subystem \"%s\" does not exist", name)); endif ## Subsystem data structure cbg = eval(sprintf("%s;", cbg_file)); endfunction |