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

template<class C>
CxMatrixTem<C> CxMatrixTem< C >::operator * ( double  val  )  const [inline]

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:


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