Home | History | Annotate | Download | only in SVD

Lines Matching defs:Zero

222   m_computed = MatrixXr::Zero(this->m_diagSize + 1, this->m_diagSize );
232 if (compU) m_naiveU = MatrixXr::Zero(this->m_diagSize + 1, this->m_diagSize + 1 );
233 else m_naiveU = MatrixXr::Zero(2, this->m_diagSize + 1 );
235 if (compV) m_naiveV = MatrixXr::Zero(this->m_diagSize, this->m_diagSize);
258 m_computed = Matrix<int, Dynamic, Dynamic>::Zero(rows(), cols());
262 if (this->m_computeFullU) this->m_matrixU = Matrix<int, Dynamic, Dynamic>::Zero(rows(), rows());
263 if (this->m_computeFullV) this->m_matrixV = Matrix<int, Dynamic, Dynamic>::Zero(cols(), cols());
319 MatrixX temp = MatrixX::Zero(naiveU.rows(), naiveU.cols());
335 MatrixX temp = MatrixX::Zero(naiveV.rows(), naiveV.cols());
492 m_computed.block(firstCol + shift, firstCol + shift, n, n) << MatrixXr::Zero(n, n);
503 // We use a rotation to zero out zi applied to the left of M
636 const Index Zero = firstCol + shift;
639 const Index I = i + Zero;
641 const Index j = permutation[length - i] - Zero;
650 aux = m_computed(I, Zero);
651 m_computed(I, Zero) = m_computed(J, Zero);
652 m_computed(J, Zero) = aux;
669 const Index CWI = I + firstColW - Zero;
670 const Index CWJ = J + firstColW - Zero;
679 realInd[J - Zero] = realI;
680 realInd[I - Zero] = j;
688 i - Zero,
689 i + 1 - Zero,