Overview
| Comment: | Continuation character |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
e03be5d993725ad82e65cf9947705dc6 |
| User & Date: | geraint@users.sourceforge.net on 2014-09-04 17:58:59.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2014-09-04
| ||
| 21:31:18 | Changed package name from octave-headers to octave-pkg-dev check-in: 668d18ca2c user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 17:58:59 | Continuation character check-in: e03be5d993 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
|
2014-08-02
| ||
| 17:04:46 | Changed continuation character in m file header to ellipsis check-in: ffc8f255c0 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/rbg2abg_m
from [064144351b]
to [94d244aa2c].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
# Bourne shell script: rbg2abg_m
#
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.20 2004/02/19 12:05:49 gawthrop
## Fix prob. when no bonds
##
## Revision 1.19 2002/04/28 18:55:03 geraint
## Fixed [ 549658 ] awk should be gawk.
## Replaced calls to awk with call to gawk.
##
| > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
# Bourne shell script: rbg2abg_m
#
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.21 2004/09/12 22:27:27 geraint
## Appended 't' to fopen mode string to open in text mode.
##
## Revision 1.20 2004/02/19 12:05:49 gawthrop
## Fix prob. when no bonds
##
## Revision 1.19 2002/04/28 18:55:03 geraint
## Fixed [ 549658 ] awk should be gawk.
## Replaced calls to awk with call to gawk.
##
|
| ︙ | ︙ | |||
159 160 161 162 163 164 165 |
end;
[n_bonds,m_bonds] = size(rbonds);
if n_bonds>0
rbonds = rbonds(:,1:6); # Strip the directional information
endif
| | | 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
end;
[n_bonds,m_bonds] = size(rbonds);
if n_bonds>0
rbonds = rbonds(:,1:6); # Strip the directional information
endif
[bonds,components,n_vector_bonds] = rbg2abg(name,rbonds,rstrokes,rcomponents,port_coord,port_name, ...
infofile,errorfile);
%Write the function m-file for the causal bond graph
write_abg(name,bonds,components,n_vector_bonds);
EOF
## Sets the units for the abg file
|
| ︙ | ︙ |