Lines Matching full:rows
22 Index rows = m.rows();
25 MatrixType m1 = MatrixType::Random(rows, cols),
26 m2 = MatrixType::Random(rows, cols),
28 VectorType v1 = VectorType::Random(rows),
29 v2 = VectorType::Random(rows),
30 v3(rows);
31 RowVectorType r1 = RowVectorType::Random(rows),
32 r2 = RowVectorType::Random(rows);
33 RhsMatrixType m4 = RhsMatrixType::Random(rows,10);
54 if (rows>1)
57 m2.block(1,1,rows-1,cols-1).template selfadjointView<Lower>().rankUpdate(v1.tail(rows-1),v2.head(cols-1));
59 m3.block(1,1,rows-1,cols-1) += v1.tail(rows-1) * v2.head(cols-1).adjoint()+ v2.head(cols-1) * v1.tail(rows-1).adjoint();