Lines Matching refs:transpose
96 VERIFY_IS_APPROX(m1.transpose().conjugate().adjoint(), m1); in adjoint()
97 VERIFY_IS_APPROX(m1.adjoint().conjugate().transpose(), m1); in adjoint()
120 VERIFY_IS_APPROX(m3,m1.transpose()); in adjoint()
130 … block<PacketSize,PacketSize>(i,j)), (m1.template block<PacketSize,PacketSize>(i,j).transpose()) ); in adjoint()
175 VERIFY_RAISES_ASSERT(a = a.transpose()); in test_adjoint()
176 VERIFY_RAISES_ASSERT(a = a.transpose() + b); in test_adjoint()
177 VERIFY_RAISES_ASSERT(a = b + a.transpose()); in test_adjoint()
178 VERIFY_RAISES_ASSERT(a = a.conjugate().transpose()); in test_adjoint()
184 a.transpose() = a.transpose(); in test_adjoint()
185 a.transpose() += a.transpose(); in test_adjoint()
186 a.transpose() += a.transpose() + b; in test_adjoint()
187 a.transpose() = a.adjoint(); in test_adjoint()
188 a.transpose() += a.adjoint(); in test_adjoint()
189 a.transpose() += a.adjoint() + b; in test_adjoint()