Lines Matching refs:m
723 PMat<T,R,C> m; in testmatvec() local
725 PMat<T> m(R,C); in testmatvec() local
727 init_array(m,R*C); in testmatvec()
734 PVector<T,R> res = dot(m,a); in testmatvec()
736 PVector<T> res = dot(m,a); in testmatvec()
753 S.pData = reinterpret_cast<STO*>(const_cast<T*>(m.ptr())); in testmatvec()
792 PMat<T,R,C> m; in testcomplexmatvec() local
794 PMat<T> m(R,C); in testcomplexmatvec() local
796 init_array(m,R*C); in testcomplexmatvec()
804 PVector<T,R> res = dot(m,tmpv); in testcomplexmatvec()
807 PVector<T> res = dot(m,tmpv); in testcomplexmatvec()
826 S.pData = reinterpret_cast<STO*>(const_cast<T*>(m.ptr())); in testcomplexmatvec()
1283 auto QR(const Matrix<T,R,C,A>&m,const T eps,bool wantQ) in QR() argument
1287 Matrix<T,R,C,TMP_ALLOC> RM = m; in QR()
1295 Vector<T> tau(m.columns()); in QR()
1296 Matrix<T> RM = m; in QR()
1297 Matrix<T> Q = Matrix<T>::identity(m.rows()); in QR()
1301 Vector<T> tmpvec(m.rows()); in QR()
1302 Matrix<T> tmpmat(1,m.rows()); in QR()
1305 const int NBC = m.columns(); in QR()
1306 const int NBR = m.rows(); in QR()