MOAB  4.9.3pre
Eigen::internal::determinant_impl< Derived, DeterminantType > Struct Template Reference

#include <Determinant.h>

List of all members.

Static Public Member Functions

static traits< Derived >::Scalar run (const Derived &m)

Detailed Description

template<typename Derived, int DeterminantType = Derived::RowsAtCompileTime>
struct Eigen::internal::determinant_impl< Derived, DeterminantType >

Definition at line 35 of file Determinant.h.


Member Function Documentation

template<typename Derived, int DeterminantType = Derived::RowsAtCompileTime>
static traits<Derived>::Scalar Eigen::internal::determinant_impl< Derived, DeterminantType >::run ( const Derived &  m) [inline, static]

Definition at line 37 of file Determinant.h.

  {
    if(Derived::ColsAtCompileTime==Dynamic && m.rows()==0)
      return typename traits<Derived>::Scalar(1);
    return m.partialPivLu().determinant();
  }

The documentation for this struct was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines