Overview
Comment: | *** empty log message *** |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
27bc8133922c04a7e9847d7216d8a015 |
User & Date: | gawthrop@users.sourceforge.net on 1997-04-09 13:00:28 |
Other Links: | branch diff | manifest | tags |
Context
1997-04-15
| ||
09:17:26 | Added the structure file - contains details of states etc. check-in: 8f27e9fb0d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1997-04-09
| ||
13:00:28 | *** empty log message *** check-in: 27bc813392 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
10:18:26 | Initial revision check-in: 0bc65abe8d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/comp/simple/C_eqn.m from [1216cb9019] to [2daad60fd9].
|
| | | | | > > > > > > > > | > | | > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | function structure = C_eqn(name,bond_number,bonds,direction,cr,args, ... structure,eqnfile); % C_eqn - equation generation for C component % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %%%%% Model Transformation Tools %%%%% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Matlab function C_eqn % structure = C_eqn(name,bond_number,bonds,direction,cr,args, ... % structure,eqnfile); % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Copyright (c) P.J. Gawthrop, 1996. if nargin<8 eqnfile = 'stdout'; end; % Unicausal version CorI = 1; structure = cieqn(name,bond_number,bonds,direction,cr,args, structure, ... CorI, eqnfile); |