Searched defs:computationOptions (Results 1 - 2 of 2) sorted by relevance

/external/eigen/test/
H A Djacobisvd.cpp48 unsigned int computationOptions,
56 JacobiSVD<MatrixType, QRPreconditioner> svd(m, computationOptions);
59 if(computationOptions & ComputeFullU)
61 if(computationOptions & ComputeThinU)
63 if(computationOptions & ComputeFullV)
65 if(computationOptions & ComputeThinV)
70 void jacobisvd_solve(const MatrixType& m, unsigned int computationOptions) argument
86 JacobiSVD<MatrixType, QRPreconditioner> svd(m, computationOptions);
47 jacobisvd_compare_to_full(const MatrixType& m, unsigned int computationOptions, const JacobiSVD<MatrixType, QRPreconditioner>& referenceSvd) argument
/external/eigen/Eigen/src/SVD/
H A DJacobiSVD.h528 JacobiSVD(Index rows, Index cols, unsigned int computationOptions = 0)
534 allocate(rows, cols, computationOptions);
540 * \param computationOptions optional parameter allowing to specify if you want full or thin U or V unitaries to be computed.
547 JacobiSVD(const MatrixType& matrix, unsigned int computationOptions = 0)
553 compute(matrix, computationOptions);
559 * \param computationOptions optional parameter allowing to specify if you want full or thin U or V unitaries to be computed.
566 JacobiSVD& compute(const MatrixType& matrix, unsigned int computationOptions);
572 * This method uses the current \a computationOptions, as already passed to the constructor or to compute(const MatrixType&, unsigned int).
656 void allocate(Index rows, Index cols, unsigned int computationOptions);
679 void JacobiSVD<MatrixType, QRPreconditioner>::allocate(Index rows, Index cols, unsigned int computationOptions) argument
726 compute(const MatrixType& matrix, unsigned int computationOptions) argument
[all...]

Completed in 147 milliseconds