Go to the source code of this file.
Classes | |
class | Eigen::internal::solve_retval_base< _DecompositionType, Rhs > |
struct | Eigen::internal::traits< solve_retval_base< DecompositionType, Rhs > > |
Namespaces | |
namespace | Eigen |
iterative scaling algorithm to equilibrate rows and column norms in matrices | |
namespace | Eigen::internal |
Defines | |
#define | EIGEN_MAKE_SOLVE_HELPERS(DecompositionType, Rhs) |
#define EIGEN_MAKE_SOLVE_HELPERS | ( | DecompositionType, | |
Rhs | |||
) |
typedef typename DecompositionType::MatrixType MatrixType; \ typedef typename MatrixType::Scalar Scalar; \ typedef typename MatrixType::RealScalar RealScalar; \ typedef typename MatrixType::Index Index; \ typedef Eigen::internal::solve_retval_base<DecompositionType,Rhs> Base; \ using Base::dec; \ using Base::rhs; \ using Base::rows; \ using Base::cols; \ solve_retval(const DecompositionType& dec, const Rhs& rhs) \ : Base(dec, rhs) {}