Home | History | Annotate | Download | only in KroneckerProduct

Lines Matching defs:Rows

46     inline Index rows() const { return m_A.rows() * m_B.rows(); }
51 return m_A.coeff(row / m_B.rows(), col / m_B.cols()) *
52 m_B.coeff(row % m_B.rows(), col % m_B.cols());
94 inline Index rows() const { return m_A.rows() * m_B.rows(); }
116 const Index Br = m_B.rows(),
118 for (Index i=0; i < m_A.rows(); ++i)
127 const Index Br = m_B.rows(),
129 dst.resize(rows(),cols());
160 Rows = size_at_compile_time<traits<Lhs>::RowsAtCompileTime, traits<Rhs>::RowsAtCompileTime>::ret,
167 typedef Matrix<Scalar,Rows,Cols> ReturnType;