Lines Matching refs:computationOptions
540 JacobiSVD(Index rows, Index cols, unsigned int computationOptions = 0)
543 allocate(rows, cols, computationOptions);
556 JacobiSVD(const MatrixType& matrix, unsigned int computationOptions = 0)
559 compute(matrix, computationOptions);
572 SVDBase<MatrixType>& compute(const MatrixType& matrix, unsigned int computationOptions);
606 void allocate(Index rows, Index cols, unsigned int computationOptions);
621 …VD<MatrixType, QRPreconditioner>::allocate(Index rows, Index cols, unsigned int computationOptions)
623 if (SVDBase<MatrixType>::allocate(rows, cols, computationOptions)) return;
640 …D<MatrixType, QRPreconditioner>::compute(const MatrixType& matrix, unsigned int computationOptions)
643 allocate(matrix.rows(), matrix.cols(), computationOptions);
775 MatrixBase<Derived>::jacobiSvd(unsigned int computationOptions) const
777 return JacobiSVD<PlainObject>(*this, computationOptions);