Files
eigen/Eigen/src/Core
Gael Guennebaud 59dc1da5bf Add a Select expression in the Array module which mimics a coeff-wise ?: operator.
Example:
  mat = (mat.cwise().abs().cwise() < Ones()).select(0,mat);
replaces all small values by 0. (the scalar version is "s = abs(s)<1 ? 0 : s")
2008-09-03 17:16:28 +00:00
..
2008-09-02 19:55:26 +00:00
2008-08-28 21:44:56 +00:00
2008-08-20 14:05:57 +00:00
2008-09-03 11:26:19 +00:00