OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:subdiag
(Results
1 - 2
of
2
) sorted by null
/external/eigen/doc/snippets/
Tridiagonalization_diagonal.cpp
12
VectorXd
subdiag
= triOfA.subDiagonal();
variable
13
cout << "The subdiagonal is:" << endl <<
subdiag
<< endl;
/external/tensorflow/tensorflow/core/kernels/
tridiagonal_solve_op.cc
91
const auto&
subdiag
= diagonals.row(2);
variable
120
if (std::abs(u(i)) >= std::abs(
subdiag
(i + 1))) {
123
const Scalar factor =
subdiag
(i + 1) / u(i, 0);
132
const Scalar factor = u(i, 0) /
subdiag
(i + 1);
133
u(i, 0) =
subdiag
(i + 1);
Completed in 329 milliseconds