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: 1722ffefcbcf42af2fbda07763aa8beaf205117364450c6684570b9e1e6dca2b
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: d29b325992 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
12:49:50
Reads the cbg data structure form a file check-in: 1722ffefcb user: gawthrop@users.sourceforge.net tags: origin/master, trunk
12:45:16
Now uses mtt_cbg check-in: f9deba8c3b 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


MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]