Home | History | Annotate | Download | only in Householder

Lines Matching full:m_trans

161       : m_vectors(v), m_coeffs(h), m_trans(false), m_length(v.diagonalSize()),
170 m_trans(other.m_trans),
211 return HouseholderSequence(*this).setTrans(!m_trans);
218 .setTrans(m_trans)
226 return conjugate().setTrans(!m_trans);
254 if(m_trans)
274 if(m_trans)
298 Index actual_k = m_trans ? m_length-k-1 : k;
321 Index end = m_trans ? (std::min)(m_length,i+BlockSize) : m_length-i;
322 Index k = m_trans ? i : (std::max)(Index(0),end-BlockSize);
333 apply_block_householder_on_the_left(sub_dst, sub_vecs, m_coeffs.segment(k, bs), !m_trans);
341 Index actual_k = m_trans ? k : m_length-k-1;
416 m_trans = trans;
420 bool trans() const { return m_trans; } /**< \brief Returns the transpose flag. */
424 bool m_trans;