Lines Matching refs:col
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]; }
315 for (int col = 0; col < Cols; col++)
316 (*this)(row, col) = (row == col) ? T(1) : T(0);
324 for (int col = 0; col < Cols; col++)
325 (*this)(row, col) = (row == col) ? src : T(0);
333 for (int col = 0; col < Cols; col++)
334 (*this)(row, col) = src[row*Cols + col];
343 for (int col = 0; col < Cols; col++)
344 (*this)(row, col) = (row == col) ? src.m_data[row] : T(0);
365 for (int col = 0; col < Cols; col++)
366 (*this)(row, col) = src(row, col);
381 for (int col = 0; col < Cols; col++)
382 (*this)(rowNdx, col) = vec.m_data[col];
395 for (int col = 0; col < Cols; col++)
396 res[col] = (*this)(rowNdx, col);
417 for (int col = 0; col < Cols; col++)
419 *dst++ = (*this)(row, col);
429 for (int col = 0; col < Cols; col++)
430 *dst++ = (*this)(row, col);
442 for (int col = 0; col < Cols1; col++)
446 v += a(row,ndx) * b(ndx,col);
447 res(row,col) = v;
461 for (int col = 0; col < Cols; col++)
462 v += mtx(row,col) * vec.m_data[col];
473 for (int col = 0; col < Cols; col++)
477 v += mtx(row,col) * vec.m_data[row];
478 res.m_data[col] = v;
508 for (int col = 0; col < Cols; col++)
510 res(row, col) = mtx(row, col) + scalar;
518 for (int col = 0; col < Cols; col++)
520 res(row, col) = mtx(row, col) - scalar;
528 for (int col = 0; col < Cols; col++)
530 res(row, col) = mtx(row, col) * scalar;
538 for (int col = 0; col < Cols; col++)
540 res(row, col) = mtx(row, col) / scalar;
550 for (int col = 0; col < Cols; col++)
552 res(row, col) = a(row, col) + b(row, col);
560 for (int col = 0; col < Cols; col++)
562 res(row, col) = a(row, col) - b(row, col);
570 for (int col = 0; col < Cols; col++)
572 res(row, col) = a(row, col) / b(row, col);