Overview
| Comment: | Now does matrix version of smxa |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
a82ebd773f2a4b06b1a245c01dabe9ad |
| User & Date: | gawthrop@users.sourceforge.net on 2000-05-18 09:27:07.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2000-05-18
| ||
| 09:39:38 | Removed fifth argument from _input check-in: 1fb8f2e128 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 09:27:07 | Now does matrix version of smxa check-in: a82ebd773f user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
2000-05-17
| ||
| 17:20:49 |
Fixed bugs with ny>1. Could be made faster by not generating y when y_sim >1 check-in: f2956c2724 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_p2cc
from [f3ef493314]
to [2a8ad0f47a].
| ︙ | |||
32 33 34 35 36 37 38 | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | - + | # Heading date=`date` cat > $sys_rep.cc <<EOF #include <octave/oct.h> DEFUN_DLD ($sys_rep, args, , |
| ︙ | |||
56 57 58 59 60 61 62 | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | - + - + + - - + + - - + + |
echo " ColumnVector mttdx ($Nx);" >> $sys_rep.cc
;;
cseo)
echo " ColumnVector mtty ($Ny);" >> $sys_rep.cc
;;
smx | smxa | smxax)
Nxx=`echo "$Nx*$Nx" | bc`
|
| ︙ | |||
107 108 109 110 111 112 113 114 115 116 117 | 108 109 110 111 112 113 114 115 116 117 118 119 | + |
;;
*)
esac
# Terminating }
echo "}" >> $sys_rep.cc;
# Convert to octave loadable code
echo Creating $sys_rep.oct
mkoctfile $sys_rep.cc
|