Lines Matching defs:res
310 void _matinv(const Matrix<T,NB,NB,A> &a,M && res) in _matinv()
384 Matrix<T,NB,NB,TMP_ALLOC> res; in matinv() local
395 Matrix<T,DYNAMIC,DYNAMIC,TMP_ALLOC> res(a.rows(),a.columns()); in matinv() local
404 void matinv(Matrix<T,DYNAMIC,DYNAMIC,TMP_ALLOC> &res, const Matrix<T,NB,NB,A> &a) in matinv()
425 PMat<T> res(R,C); in testinv() local
432 PMat<T,R,C> res = matinv(a); in testinv() local
482 PMat<T,R,C> res = a+b; in testadd() local
484 PMat<T> res = a+b; in testadd() local
541 PMat<T,R,C> res=PMat<T,R,C>::diagonal(a); in testdiag() local
543 PMat<T> res=PMat<T>::diagonal(a); in testdiag() local
607 PMat<T,R,C> res = outer(a,b); in testouter() local
651 PMat<T,R,C> res=PMat<T,R,C>::diagonal(a); in testview() local
653 PMat<T> res=PMat<T>::diagonal(a); in testview() local
734 PVector<T,R> res = dot(m,a); in testmatvec() local
736 PVector<T> res = dot(m,a); in testmatvec() local
804 PVector<T,R> res = dot(m,tmpv); in testcomplexmatvec() local
807 PVector<T> res = dot(m,tmpv); in testcomplexmatvec() local
888 PMat<T,R,C> res = dot(ma,mb); in testmatmult() local
890 PMat<T> res = dot(ma,mb); in testmatmult() local
984 PMat<T,R,C> res(T{}); in testsubmatmult() local
986 PMat<T> res(R,C,T{}); in testsubmatmult() local
1066 PMat<T,C,R> res = ma.transpose(); in testmattranspose() local
1068 PMat<T> res = ma.transpose(); in testmattranspose() local
1131 inline T _householder(Vector<T,L,A> &res,const V&v,const T eps) in _householder()
1175 Vector<T,NB,TMP_ALLOC> res; in householder() local
1187 Vector<T,DYNAMIC,TMP_ALLOC> res(v.length()); in householder() local
1197 auto householder(const V&v,const T threshold,TMP &res) in householder()
1244 auto res = householder(a,HouseholderThreshold<T>::value); in testHouseholder() local
1378 auto res = QR(a,HouseholderThreshold<T>::value,true); in testQR() local
1517 auto res = cholesky(a); in testCholesky() local