OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_matT
(Results
1 - 5
of
5
) sorted by null
/external/eigen/Eigen/src/Eigenvalues/
EigenSolver.h
113
EigenSolver() : m_eivec(), m_eivalues(), m_isInitialized(false), m_realSchur(),
m_matT
(), m_tmp() {}
127
m_matT
(size, size),
152
m_matT
(matrix.rows(), matrix.cols()),
306
MatrixType
m_matT
;
376
m_matT
= m_realSchur.matrixT();
385
if (i == matrix.cols() - 1 ||
m_matT
.coeff(i+1, i) == Scalar(0))
387
m_eivalues.coeffRef(i) =
m_matT
.coeff(i, i);
392
Scalar p = Scalar(0.5) * (
m_matT
.coeff(i, i) -
m_matT
.coeff(i+1, i+1));
393
Scalar z = sqrt(abs(p * p +
m_matT
.coeff(i+1, i) * m_matT.coeff(i, i+1)))
[
all
...]
ComplexSchur.h
95
:
m_matT
(size,size),
113
:
m_matT
(matrix.rows(),matrix.cols()),
164
return
m_matT
;
246
ComplexMatrixType
m_matT
, m_matU;
260
/** If
m_matT
(i+1,i) is neglegible in floating point arithmetic
261
* compared to
m_matT
(i,i) and
m_matT
(j,j), then set it to zero and
266
RealScalar d = numext::norm1(
m_matT
.coeff(i,i)) + numext::norm1(
m_matT
.coeff(i+1,i+1));
267
RealScalar sd = numext::norm1(
m_matT
.coeff(i+1,i))
[
all
...]
RealSchur.h
84
:
m_matT
(size, size),
104
:
m_matT
(matrix.rows(),matrix.cols()),
146
return
m_matT
;
225
MatrixType
m_matT
;
265
m_matT
= matrixH;
272
m_workspaceVector.resize(
m_matT
.cols());
275
// The matrix
m_matT
is divided in three parts.
276
// Rows 0,...,il-1 are decoupled from the rest because
m_matT
(il,il-1) is zero.
279
Index iu =
m_matT
.cols() - 1;
294
m_matT
.coeffRef(iu,iu) = m_matT.coeff(iu,iu) + exshift
[
all
...]
ComplexSchur_MKL.h
57
m_matT
= matrix.cast<ComplexScalar>(); \
72
m_matT
= matrix; \
75
info = LAPACKE_##MKLPREFIX##gees( matrix_order, jobvs, sort, select, n, (MKLTYPE*)
m_matT
.data(), lda, &sdim, (MKLTYPE*)w.data(), (MKLTYPE*)m_matU.data(), ldvs ); \
RealSchur_MKL.h
61
m_matT
= matrix; \
64
info = LAPACKE_##MKLPREFIX##gees( matrix_order, jobvs, sort, select, n, (MKLTYPE*)
m_matT
.data(), lda, &sdim, (MKLTYPE*)wr.data(), (MKLTYPE*)wi.data(), (MKLTYPE*)m_matU.data(), ldvs ); \
Completed in 518 milliseconds