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

#include <unwrap.hpp>

List of all members.

Public Member Functions

 partial_unwrap_check (const Row< 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< Row< eT > >

Definition at line 1010 of file unwrap.hpp.


Constructor & Destructor Documentation

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

Definition at line 1015 of file unwrap.hpp.

01016     : do_trans(false)
01017     , do_times(false)
01018     , val     (1)
01019     , M_local ( (&A == &B) ? new Mat<eT>(A) : 0 )
01020     , M       ( (&A == &B) ? (*M_local)     : A )
01021     {
01022     arma_extra_debug_sigprint();
01023     }

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

Definition at line 1027 of file unwrap.hpp.

01028     {
01029     arma_extra_debug_sigprint();
01030     
01031     if(M_local)
01032       {
01033       delete M_local;
01034       }
01035     }


Member Data Documentation

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

Definition at line 1039 of file unwrap.hpp.

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

Definition at line 1040 of file unwrap.hpp.

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

Definition at line 1041 of file unwrap.hpp.

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

Definition at line 1042 of file unwrap.hpp.

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

Definition at line 1043 of file unwrap.hpp.