template<class C>
Multiplication.
Definition at line 155 of file Matrix.h. References CxMatrixTem< C >::_data, Impala::Core::Array::C, CxMatrixTem< C >::i(), CxMatrixTem< C >::nElem(), and CxMatrixTem< C >::t(). 00156 { 00157 CxMatrixTem<C> m(*this); 00158 C* t = m._data; 00159 int i = nElem(); 00160 while (--i >= 0) 00161 *t++ = *t * val ; 00162 return m; 00163 }
Here is the call graph for this function:
|