Overview
| Comment: | typo |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
bb0ed37feb60c56bd2c20b83f8877084 |
| User & Date: | geraint@users.sourceforge.net on 2001-02-05 08:32:31.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2001-02-05
| ||
| 08:50:58 | Octave 2.1.x compatability. check-in: f53801a595 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 08:32:31 | typo check-in: bb0ed37feb user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 04:32:35 | Octave version 2.1.x compatability and #ifdef statements for standalone rep check-in: 6b01e9c010 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/make_ode2odes
from [c32cd07145]
to [24f28d603b].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.46 2001/01/08 06:21:59 geraint
## #ifdef STANDALONE stuff
##
## Revision 1.45 2001/01/07 01:25:49 geraint
## Compatibility with Octave 2.1.33
##
## Revision 1.44 2000/12/05 12:11:45 peterg
| > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.45 2001/02/05 04:32:35 geraint
## Octave version 2.1.x compatability and #ifdef statements for standalone rep
##
## Revision 1.46 2001/01/08 06:21:59 geraint
## #ifdef STANDALONE stuff
##
## Revision 1.45 2001/01/07 01:25:49 geraint
## Compatibility with Octave 2.1.33
##
## Revision 1.44 2000/12/05 12:11:45 peterg
|
| ︙ | ︙ | |||
249 250 251 252 253 254 255 |
EOF
} # make_m
make_cc()
{
# get octave version
octave_development=`octave --version | awk '{print $4}' | awk -F\. '{print $2}'`
| | | 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 |
EOF
} # make_m
make_cc()
{
# get octave version
octave_development=`octave --version | awk '{print $4}' | awk -F\. '{print $2}'`
if [ $octave_development ]; then
vector_value=column_vector_value
feval_header=parse.h
else
vector_value=vector_value
feval_header=toplev.h
fi
|
| ︙ | ︙ |