Public Member Functions | Private Attributes
Eigen::FloatMatrixFormatter< Derived > Class Template Reference

Formatter for Eigen matrix type. More...

#include <formatters.hpp>

Inheritance diagram for Eigen::FloatMatrixFormatter< Derived >:
Inheritance graph
[legend]

List of all members.

Public Member Functions

 FloatMatrixFormatter (const unsigned int &p=2, const int &w=-1)
 Default constructor.
FloatMatrixFormatter< Derived > & operator() (const Derived &matrix)
 Format a matrix with permanently stored precision/width.
FloatMatrixFormatter< Derived > & operator() (const Derived &matrix, const unsigned int &p, const int &w)
 Format a matrix with temporarily specified precision/width.
FloatMatrixFormatter< Derived > & precision (const unsigned int &p)
 Sets the precision format parameter.
unsigned int precision ()
 Returns the current precision setting.
FloatMatrixFormatter< Derived > & width (const int &w)
 Sets the width format parameter.
int width ()
 Returns the current width setting.
virtual ~FloatMatrixFormatter ()

Private Attributes

const Derived * _matrix
ecl::Format< typename
Derived::Scalar > 
format
 Stream the formatter.
bool ready_to_format
bool tmp_formatting
unsigned int tmp_precision
int tmp_width

Detailed Description

template<typename Derived>
class Eigen::FloatMatrixFormatter< Derived >

Formatter for Eigen matrix type.

I want make it formatting any types of eigen

Template Parameters:
Derived: MatrixBase's type which specify the matrix as vector, matrix with any storage type
Todo:
specialise the formatting; now it just support the float type only.

Definition at line 63 of file formatters.hpp.


Constructor & Destructor Documentation

template<typename Derived >
Eigen::FloatMatrixFormatter< Derived >::FloatMatrixFormatter ( const unsigned int &  p = 2,
const int &  w = -1 
) [inline]

Default constructor.

Initialises the format tags for width, and precision.

Parameters:
w: width (default - no width constraints)
p: the number of decimal places of precision (default - 4)

Definition at line 75 of file formatters.hpp.

template<typename Derived >
virtual Eigen::FloatMatrixFormatter< Derived >::~FloatMatrixFormatter ( ) [inline, virtual]

Definition at line 83 of file formatters.hpp.


Member Function Documentation

template<typename Derived >
FloatMatrixFormatter< Derived >& Eigen::FloatMatrixFormatter< Derived >::operator() ( const Derived &  matrix) [inline]

Format a matrix with permanently stored precision/width.

This function directly formats the specified input value with the stored settings.

 Vector2d v; v << 1.0, 2.0;
 Format<Vector2d> format;
 cout << format(v) << endl;
Parameters:
matrix: the matrix to be formatted (gets temporarily stored as a pointer).
Returns:
FloatMatrixFormatter& : this formatter readied for use with a stream.

Definition at line 142 of file formatters.hpp.

template<typename Derived >
FloatMatrixFormatter< Derived >& Eigen::FloatMatrixFormatter< Derived >::operator() ( const Derived &  matrix,
const unsigned int &  p,
const int &  w 
) [inline]

Format a matrix with temporarily specified precision/width.

This function directly formats the specified input value and temporary settings.

 Vector2d v; v << 1.0, 2.0;
 Format<Vector2d> format;
 cout << format(v,3,-1) << endl; // precision of 3 and no width constraint
Parameters:
matrix: the matrix to be formatted (gets temporarily stored as a pointer).
p: the number of decimal places of precision.
w: the width to use for inserted floats (-1 is no width constraint).
Returns:
FloatMatrixFormatter& : this formatter readied for use with a stream.

Definition at line 164 of file formatters.hpp.

template<typename Derived >
FloatMatrixFormatter<Derived>& Eigen::FloatMatrixFormatter< Derived >::precision ( const unsigned int &  p) [inline]

Sets the precision format parameter.

Sets the precision format parameter.

Parameters:
p: the number of decimal places of precision.
Returns:
FloatMatrixFormatter& : this formatter readied for use with a stream.

Definition at line 96 of file formatters.hpp.

template<typename Derived >
unsigned int Eigen::FloatMatrixFormatter< Derived >::precision ( ) [inline]

Returns the current precision setting.

Returns:
unsigned int : the precision value.

Definition at line 118 of file formatters.hpp.

template<typename Derived >
FloatMatrixFormatter<Derived>& Eigen::FloatMatrixFormatter< Derived >::width ( const int &  w) [inline]

Sets the width format parameter.

Sets the width format parameter.

Parameters:
w: the width to use for inserted floats (-1 is no width constraint).
Returns:
FloatMatrixFormatter& : this formatter readied for use with a stream.

Definition at line 109 of file formatters.hpp.

template<typename Derived >
int Eigen::FloatMatrixFormatter< Derived >::width ( ) [inline]

Returns the current width setting.

Returns:
int : the witdh value (-1 for no width constraint).

Definition at line 124 of file formatters.hpp.


Member Data Documentation

template<typename Derived >
const Derived* Eigen::FloatMatrixFormatter< Derived >::_matrix [private]

Definition at line 195 of file formatters.hpp.

template<typename Derived >
ecl::Format<typename Derived::Scalar> Eigen::FloatMatrixFormatter< Derived >::format [private]

Stream the formatter.

Insertion operator for sending the formatter to an output stream.

Parameters:
ostream: the output stream.
formatter: the formatter to be inserted.
Template Parameters:
OutputStream: the type of the output stream to be inserted into.
Derived: matrix type.
Returns:
OutputStream : continue streaming with the updated output stream.
Exceptions:
StandardException: throws if the formatter has un-specified _matrix [debug mode only]

Definition at line 187 of file formatters.hpp.

template<typename Derived >
bool Eigen::FloatMatrixFormatter< Derived >::ready_to_format [private]

Definition at line 194 of file formatters.hpp.

template<typename Derived >
bool Eigen::FloatMatrixFormatter< Derived >::tmp_formatting [private]

Definition at line 193 of file formatters.hpp.

template<typename Derived >
unsigned int Eigen::FloatMatrixFormatter< Derived >::tmp_precision [private]

Definition at line 192 of file formatters.hpp.

template<typename Derived >
int Eigen::FloatMatrixFormatter< Derived >::tmp_width [private]

Definition at line 191 of file formatters.hpp.


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


ecl_linear_algebra
Author(s): Daniel Stonier (d.stonier@gmail.com)
autogenerated on Thu Jan 2 2014 11:12:13