Overview
| Comment: | Added csex rep (cse without E) |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
c5351966cdc54bbfbb621d0664289603 |
| User & Date: | gawthrop@users.sourceforge.net on 2000-10-11 09:07:17.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2000-10-11
| ||
| 09:07:53 |
Vectorisation csex rep. check-in: 42c317bf42 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 09:07:17 | Added csex rep (cse without E) check-in: c5351966cd user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 09:06:52 | Removed _ check-in: 5835bbe3cb user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/def2write_r
from [321572f689]
to [78fe87a1c6].
| ︙ | ︙ | |||
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.1 2000/10/10 09:07:32 peterg ## Initial revision ## ############################################################### sys=$1 # System name | > > > | 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.2 2000/10/10 21:02:17 peterg ## Added cse reps ## ## Revision 1.1 2000/10/10 09:07:32 peterg ## Initial revision ## ############################################################### sys=$1 # System name |
| ︙ | ︙ | |||
36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# Set up representation-specific stuff
case $rep in
cse)
matrices='EdX E'
ns="$Nx $Nx"
ms="1 $Nx"
;;
cseo)
matrices='Y'
ns="$Ny"
ms="1"
;;
ode)
matrices='dX'
| > > > > > | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# Set up representation-specific stuff
case $rep in
cse)
matrices='EdX E'
ns="$Nx $Nx"
ms="1 $Nx"
;;
csex)
matrices='EdX'
ns="$Nx"
ms="1"
;;
cseo)
matrices='Y'
ns="$Ny"
ms="1"
;;
ode)
matrices='dX'
|
| ︙ | ︙ |