Static Public Member Functions

access Class Reference
[Access]

#include <access.hpp>

List of all members.

Static Public Member Functions

template<typename T1 >
static arma_inline T1 & rw (const T1 &x)
 internal function to allow modification of data declared as read-only
template<typename eT >
static arma_inline const eT & tmp_real (const eT &X)
 internal function to obtain the real part of either a plain number or a complex number
template<typename T >
static arma_inline const T tmp_real (const std::complex< T > &X)

Detailed Description

Definition at line 21 of file access.hpp.


Member Function Documentation

template<typename T1 >
static arma_inline T1& access::rw ( const T1 &  x  )  [inline, static]
template<typename eT >
static arma_inline const eT& access::tmp_real ( const eT &  X  )  [inline, static]

internal function to obtain the real part of either a plain number or a complex number

Definition at line 29 of file access.hpp.

Referenced by log_det(), auxlib::log_det(), norm_proxy(), norm_unwrap(), and diskio::save_ppm_binary().

{ return X;        }

template<typename T >
static arma_inline const T access::tmp_real ( const std::complex< T > &  X  )  [inline, static]

Definition at line 30 of file access.hpp.

{ return X.real(); }