Lines Matching refs:computationOptions
90 BDCSVD(Index rows, Index cols, unsigned int computationOptions = 0)
94 allocate(rows, cols, computationOptions); in SVDBase()
107 BDCSVD(const MatrixType& matrix, unsigned int computationOptions = 0)
111 compute(matrix, computationOptions); in SVDBase()
127 SVDBase<MatrixType>& compute(const MatrixType& matrix, unsigned int computationOptions);
198 void allocate(Index rows, Index cols, unsigned int computationOptions);
218 void BDCSVD<MatrixType>::allocate(Index rows, Index cols, unsigned int computationOptions) in allocate() argument
221 if (SVDBase<MatrixType>::allocate(rows, cols, computationOptions)) return; in allocate()
255 …trix<int, Dynamic, Dynamic> >::compute(const MatrixType& matrix, unsigned int computationOptions) { in compute() argument
256 allocate(matrix.rows(), matrix.cols(), computationOptions); in compute()
272 BDCSVD<MatrixType>::compute(const MatrixType& matrix, unsigned int computationOptions) in compute() argument
274 allocate(matrix.rows(), matrix.cols(), computationOptions); in compute()