Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

template<class C>
MatrixTem<C> Impala::Core::Matrix::MatrixTem< C >::operator * ( double  val  )  const [inline]

Multiplication.

Definition at line 163 of file MatrixTem.h.

References Impala::Core::Matrix::MatrixTem< C >::_data, Impala::Core::Array::C, Impala::Core::Matrix::MatrixTem< C >::i(), Impala::Core::Matrix::MatrixTem< C >::nElem(), and Impala::Core::Matrix::MatrixTem< C >::t().

00164         {
00165                 MatrixTem<C> m(*this);
00166                 C* t = m._data;
00167                 int i = nElem();
00168                 while (--i >= 0)
00169                         *t++ = *t * val ;
00170                 return m;
00171         }

Here is the call graph for this function:


Generated on Thu Jan 13 09:20:20 2011 for ImpalaSrc by  doxygen 1.5.1