Fix MKL wrapper for ComplexSchur

This commit is contained in:
Gael Guennebaud 2015-12-11 23:31:21 +01:00
parent 4483c0fdf6
commit 140f3a02a8

View File

@ -53,7 +53,7 @@ ComplexSchur<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW> >::compute(const Eigen
m_matUisUptodate = false; \
if(matrix.cols() == 1) \
{ \
m_matT = matrix.template cast<ComplexScalar>(); \
m_matT = matrix.derived().template cast<ComplexScalar>(); \
if(computeU) m_matU = ComplexMatrixType::Identity(1,1); \
m_info = Success; \
m_isInitialized = true; \