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

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

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:


Generated on Fri Mar 19 10:32:12 2010 for ImpalaSrc by  doxygen 1.5.1