Lines Matching refs:options
87 * \param[in] options A or-ed set of flags {#ComputeEigenvectors,#EigenvaluesOnly} | {#Ax_lBx,#ABx_lx,#BAx_lx}.
96 * \a options contains ComputeEigenvectors.
98 * In addition, the two following variants can be solved via \p options:
108 int options = ComputeEigenvectors|Ax_lBx)
111 compute(matA, matB, options);
120 * \param[in] options A or-ed set of flags {#ComputeEigenvectors,#EigenvaluesOnly} | {#Ax_lBx,#ABx_lx,#BAx_lx}.
125 * Accoring to \p options, this function computes eigenvalues and (if requested)
135 * the eigenvalues. If \p options contains ComputeEigenvectors, then the
141 * of the selfadjoint matrix \f$ L^{-1} A (L^*)^{-1} \f$ if \p options contains Ax_lBx
155 int options = ComputeEigenvectors|Ax_lBx);
164 compute(const MatrixType& matA, const MatrixType& matB, int options)
167 eigen_assert((options&~(EigVecMask|GenEigMask))==0
168 && (options&EigVecMask)!=EigVecMask
169 && ((options&GenEigMask)==0 || (options&GenEigMask)==Ax_lBx
170 || (options&GenEigMask)==ABx_lx || (options&GenEigMask)==BAx_lx)
173 bool computeEigVecs = ((options&EigVecMask)==0) || ((options&EigVecMask)==ComputeEigenvectors);
178 int type = (options&GenEigMask);