Overview
Comment: | Fix for ambiguous Matrix instantiation (Octave 2.0.16). |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
46142f52114fd95b6a0774167df8f1b4 |
User & Date: | geraint@users.sourceforge.net on 2001-03-28 01:50:40 |
Other Links: | branch diff | manifest | tags |
Context
2001-03-29
| ||
19:24:14 | Can now use c representations of crs when using -c option check-in: d42eec3600 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2001-03-28
| ||
01:50:40 | Fix for ambiguous Matrix instantiation (Octave 2.0.16). check-in: 46142f5211 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2001-03-27
| ||
13:47:53 | First version check-in: fb233b4b1a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/cc/mtt_implicit.cc from [a2b6319245] to [e77c8f90f0].
︙ | ︙ | |||
45 46 47 48 49 50 51 | { AA (row,col) = 0.0; AA (col,row) = 0.0; } } } | | | 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | { AA (row,col) = 0.0; AA (col,row) = 0.0; } } } x = static_cast<ColumnVector> (xleftdiv (AA, static_cast<Matrix>(static_cast<ColumnVector>(AAx + dx * t)))); for (row = 0; row < Nx; row++) { if (openx (row) > 0.5) { x (row) = 0.0; } |
︙ | ︙ |