www.mooseframework.org
Public Types | Static Public Member Functions | List of all members
MetaPhysicL::RawType< ColumnMajorMatrixTempl< T > > Struct Template Reference

#include <ColumnMajorMatrix.h>

Public Types

typedef ColumnMajorMatrixTempl< typename RawType< T >::value_typevalue_type
 

Static Public Member Functions

static value_type value (const ColumnMajorMatrixTempl< T > &in)
 

Detailed Description

template<typename T>
struct MetaPhysicL::RawType< ColumnMajorMatrixTempl< T > >

Definition at line 811 of file ColumnMajorMatrix.h.

Member Typedef Documentation

◆ value_type

template<typename T >
typedef ColumnMajorMatrixTempl<typename RawType<T>::value_type> MetaPhysicL::RawType< ColumnMajorMatrixTempl< T > >::value_type

Definition at line 813 of file ColumnMajorMatrix.h.

Member Function Documentation

◆ value()

template<typename T >
static value_type MetaPhysicL::RawType< ColumnMajorMatrixTempl< T > >::value ( const ColumnMajorMatrixTempl< T > &  in)
inlinestatic

Definition at line 815 of file ColumnMajorMatrix.h.

816  {
817  value_type ret(in.m(), in.n());
818  for (MooseIndex(in.m()) i = 0; i < in.m(); ++i)
819  for (MooseIndex(in.n()) j = 0; j < in.n(); ++j)
820  ret(i, j) = raw_value(in(i, j));
821 
822  return ret;
823  }
auto raw_value(const Eigen::Map< T > &in)
Definition: ADReal.h:73
unsigned int m() const
Returns the number of columns.
ColumnMajorMatrixTempl< typename RawType< T >::value_type > value_type
unsigned int n() const
Returns the number of rows.

The documentation for this struct was generated from the following file: