partial_unwrap_check< Col< eT > > Class Template Reference
[Unwrap]

#include <unwrap.hpp>

List of all members.

Public Member Functions

 partial_unwrap_check (const Col< eT > &A, const Mat< eT > &B)
 ~partial_unwrap_check ()

Public Attributes

const bool do_trans
const bool do_times
const eT val
const Mat< eT > * M_local
const Mat< eT > & M

Detailed Description

template<typename eT>
class partial_unwrap_check< Col< eT > >

Definition at line 1154 of file unwrap.hpp.


Constructor & Destructor Documentation

template<typename eT >
partial_unwrap_check< Col< eT > >::partial_unwrap_check ( const Col< eT > &  A,
const Mat< eT > &  B 
) [inline]

Definition at line 1159 of file unwrap.hpp.

01160     : do_trans(false)
01161     , do_times(false)
01162     , val     (1)
01163     , M_local ( (&A == &B) ? new Mat<eT>(A) : 0 )
01164     , M       ( (&A == &B) ? (*M_local)     : A )
01165     {
01166     arma_extra_debug_sigprint();
01167     }

template<typename eT >
partial_unwrap_check< Col< eT > >::~partial_unwrap_check (  )  [inline]

Definition at line 1171 of file unwrap.hpp.

01172     {
01173     arma_extra_debug_sigprint();
01174     
01175     if(M_local)
01176       {
01177       delete M_local;
01178       }
01179     }


Member Data Documentation

template<typename eT >
const bool partial_unwrap_check< Col< eT > >::do_trans

Definition at line 1183 of file unwrap.hpp.

template<typename eT >
const bool partial_unwrap_check< Col< eT > >::do_times

Definition at line 1184 of file unwrap.hpp.

template<typename eT >
const eT partial_unwrap_check< Col< eT > >::val

Definition at line 1185 of file unwrap.hpp.

template<typename eT >
const Mat<eT>* partial_unwrap_check< Col< eT > >::M_local

Definition at line 1186 of file unwrap.hpp.

template<typename eT >
const Mat<eT>& partial_unwrap_check< Col< eT > >::M

Definition at line 1187 of file unwrap.hpp.