Differences From Artifact [44405c14b7]:
- File
mttroot/mtt/lib/cc/mtt_implicit.cc
— part of check-in
[5685d298d1]
at
2002-05-01 17:30:56
on branch origin/master
— Improved pre-processor directives to better accommodate future alternatives (matlab)
if necessary. (user: geraint@users.sourceforge.net, size: 1899) [annotate] [blame] [check-ins using] [more...]
To Artifact [c10762dcf4]:
- File mtt/lib/cc/mtt_implicit.cc — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 1869) [annotate] [blame] [check-ins using] [more...]
- File
mttroot/mtt/lib/cc/mtt_implicit.cc
— part of check-in
[d76c0d8ac5]
at
2003-07-13 21:53:24
on branch origin/master
— Updated to conform to latest Octave (tested with 2.1.49).
- the pathsearch library was merged into liboctave last year
- static_cast no longer seems to work between Matrix and ColumnVector (user: geraint@users.sourceforge.net, size: 1869) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
49 50 51 52 53 54 55 |
AA (row,col) = 0.0;
AA (col,row) = 0.0;
}
}
}
#ifdef OCTAVE_DEV
| | | 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
AA (row,col) = 0.0;
AA (col,row) = 0.0;
}
}
}
#ifdef OCTAVE_DEV
x = xleftdiv (AA, Matrix(AAx + dx * t)).column (0);
#else // !OCTAVE_DEV
Matrix tmp = xleftdiv (AA, static_cast<Matrix>(static_cast<ColumnVector>(AAx + dx * t)));
for (row = 0; row < Nx; row++)
{
x (row) = tmp (row,0);
}
#endif // OCTAVE_DEV
|
| ︙ | ︙ |