Lines Matching defs:row

68 	inline const T&					operator()			(int row, int col) const	{ return m_data[col][row];	}
69 inline T& operator() (int row, int col) { return m_data[col][row]; }
88 // Vec * Mat (row vector).
320 for (int row = 0; row < Rows; row++)
322 (*this)(row, col) = (row == col) ? T(1) : T(0);
329 for (int row = 0; row < Rows; row++)
331 (*this)(row, col) = (row == col) ? src : T(0);
338 for (int row = 0; row < Rows; row++)
340 (*this)(row, col) = src[row*Cols + col];
348 for (int row = 0; row < Rows; row++)
350 (*this)(row, col) = (row == col) ? src.m_data[row] : T(0);
370 for (int row = 0; row < Rows; row++)
372 (*this)(row, col) = src(row, col);
424 for (int row = 0; row < Rows; row++)
425 *dst++ = (*this)(row, col);
434 for (int row = 0; row < Rows; row++)
436 *dst++ = (*this)(row, col);
446 for (int row = 0; row < Rows0; row++)
452 v += a(row,ndx) * b(ndx,col);
453 res(row,col) = v;
464 for (int row = 0; row < Rows; row++)
468 v += mtx(row,col) * vec.m_data[col];
469 res.m_data[row] = v;
474 // Multiply of matrix with row vector.
482 for (int row = 0; row < Rows; row++)
483 v += mtx(row,col) * vec.m_data[row];
545 for (int row = 0; row < Rows; row++)
546 res(row, col) = mtx(row, col) + scalar;
555 for (int row = 0; row < Rows; row++)
556 res(row, col) = mtx(row, col) - scalar;
565 for (int row = 0; row < Rows; row++)
566 res(row, col) = mtx(row, col) * scalar;
575 for (int row = 0; row < Rows; row++)
576 res(row, col) = mtx(row, col) / scalar;
587 for (int row = 0; row < Rows; row++)
588 res(row, col) = a(row, col) + b(row, col);
597 for (int row = 0; row < Rows; row++)
598 res(row, col) = a(row, col) - b(row, col);
607 for (int row = 0; row < Rows; row++)
608 res(row, col) = a(row, col) / b(row, col);
615 for (int row = 0; row < Rows; row++)
617 if (lhs(row, col) != rhs(row, col))