Lines Matching full:norm
195 Index findSmallSubdiagEntry(Index iu, Scalar norm);
225 Scalar norm = computeNormOfT();
227 if(norm!=0)
231 Index il = findSmallSubdiagEntry(iu, norm);
271 /** \internal Computes and returns vector L1 norm of T */
277 // Scalar norm = m_matT.upper().cwiseAbs().sum()
279 Scalar norm(0);
281 norm += m_matT.row(j).segment((std::max)(j-1,Index(0)), size-(std::max)(j-1,Index(0))).cwiseAbs().sum();
282 return norm;
287 inline typename MatrixType::Index RealSchur<MatrixType>::findSmallSubdiagEntry(Index iu, Scalar norm)
294 s = norm;