Overview
| Comment: | Zapped unnecessary Npar creation |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
24899d32416fa09401ca1b6bc689fac9 |
| User & Date: | gawthrop@users.sourceforge.net on 2000-11-29 20:48:53.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2000-11-29
| ||
| 21:06:16 | Removed Npar creation - not needed?? check-in: c037b4cb93 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 20:48:53 | Zapped unnecessary Npar creation check-in: 24899d3241 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
2000-11-28
| ||
| 18:28:29 | Removed fancy box - messes up TOC check-in: 5eb037c046 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/def2write_r
from [0684678425]
to [1f67ee80a1].
| ︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.4 2000/10/14 16:19:54 peterg ## Just optimize one line at a time ... ## ## Revision 1.3 2000/10/11 09:07:17 peterg ## Added csex rep (cse without E) ## ## Revision 1.2 2000/10/10 21:02:17 peterg | > > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.5 2000/11/09 10:12:24 peterg ## Removed debugging line ## ## Revision 1.4 2000/10/14 16:19:54 peterg ## Just optimize one line at a time ... ## ## Revision 1.3 2000/10/11 09:07:17 peterg ## Added csex rep (cse without E) ## ## Revision 1.2 2000/10/10 21:02:17 peterg |
| ︙ | ︙ | |||
36 37 38 39 40 41 42 | # Find system constants Nx=`mtt_getsize $sys x` # States Nxx=`mtt_getsize $sys xx` # States x States Nu=`mtt_getsize $sys u` # Inputs Ny=`mtt_getsize $sys y` # Outputs Nyz=`mtt_getsize $sys yz` # Zero outputs | | | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
# Find system constants
Nx=`mtt_getsize $sys x` # States
Nxx=`mtt_getsize $sys xx` # States x States
Nu=`mtt_getsize $sys u` # Inputs
Ny=`mtt_getsize $sys y` # Outputs
Nyz=`mtt_getsize $sys yz` # Zero outputs
#Npar=`wc -l $sys\_sympar.txt | awk '{print $1}'`
# Set up representation-specific stuff
case $rep in
cse)
matrices='EdX E'
ns="$Nx $Nx"
ms="1 $Nx"
|
| ︙ | ︙ |