template<class C>
Addition.
Definition at line 216 of file Matrix.h. References CxMatrixTem< C >::_data, Impala::Core::Array::C, CxMatrixTem< C >::i(), CxMatrixTem< C >::nElem(), and CxMatrixTem< C >::t(). 00217 { 00218 00219 CxMatrixTem<C> m(*this); 00220 C* t = m._data; 00221 int i = nElem(); 00222 while (--i >= 0) 00223 *t++ = val + *t; 00224 return m; 00225 }
Here is the call graph for this function:
|