Stxxl  1.4.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
Public Types | Public Member Functions
stxxl::column_vector< ValueType > Class Template Reference

external column-vector container for matrix multiplication More...

#include <matrix.h>

Inheritance diagram for stxxl::column_vector< ValueType >:
Inheritance graph
[legend]
Collaboration diagram for stxxl::column_vector< ValueType >:
Collaboration graph
[legend]

List of all members.

Public Types

typedef vector< ValueType > vector_type
typedef vector_type::size_type size_type

Public Member Functions

 column_vector (size_type n=0)
column_vector operator+ (const column_vector &right) const
column_vector operator- (const column_vector &right) const
column_vector operator* (const ValueType scalar) const
column_vectoroperator+= (const column_vector &right)
column_vectoroperator-= (const column_vector &right)
column_vectoroperator*= (const ValueType scalar)
void set_zero ()

Detailed Description

template<typename ValueType>
class stxxl::column_vector< ValueType >

external column-vector container for matrix multiplication

Template Parameters:
ValueTypetype of contained objects (POD with no references to internal memory)

Definition at line 44 of file matrix.h.


Member Typedef Documentation

template<typename ValueType>
typedef vector_type::size_type stxxl::column_vector< ValueType >::size_type

Reimplemented from stxxl::vector< ValueType >.

Definition at line 48 of file matrix.h.

template<typename ValueType>
typedef vector<ValueType> stxxl::column_vector< ValueType >::vector_type

Definition at line 47 of file matrix.h.


Constructor & Destructor Documentation

template<typename ValueType>
stxxl::column_vector< ValueType >::column_vector ( size_type  n = 0) [inline]
Parameters:
nnumber of elements

Definition at line 53 of file matrix.h.


Member Function Documentation

template<typename ValueType>
column_vector stxxl::column_vector< ValueType >::operator* ( const ValueType  scalar) const [inline]

Definition at line 74 of file matrix.h.

template<typename ValueType>
column_vector& stxxl::column_vector< ValueType >::operator*= ( const ValueType  scalar) [inline]

Definition at line 98 of file matrix.h.

template<typename ValueType>
column_vector stxxl::column_vector< ValueType >::operator+ ( const column_vector< ValueType > &  right) const [inline]
template<typename ValueType>
column_vector& stxxl::column_vector< ValueType >::operator+= ( const column_vector< ValueType > &  right) [inline]
template<typename ValueType>
column_vector stxxl::column_vector< ValueType >::operator- ( const column_vector< ValueType > &  right) const [inline]
template<typename ValueType>
column_vector& stxxl::column_vector< ValueType >::operator-= ( const column_vector< ValueType > &  right) [inline]
template<typename ValueType>
void stxxl::column_vector< ValueType >::set_zero ( ) [inline]

The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines