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

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

Addition.

Definition at line 224 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().

00225 {
00226 
00227     MatrixTem<C> m(*this);
00228     C* t = m._data;
00229     int i = nElem();
00230     while (--i >= 0)
00231         *t++ = val + *t;
00232     return m;
00233 }

Here is the call graph for this function:


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