algebramix_doc 0.3
matrix_series_rep< C, V, U > Class Template Reference

#include <series_matrix.hpp>

Inheritance diagram for matrix_series_rep< C, V, U >:
series_rep

List of all members.

Public Member Functions


Detailed Description

template<typename C, typename V, typename U>
class mmx::matrix_series_rep< C, V, U >

Definition at line 95 of file series_matrix.hpp.


Constructor & Destructor Documentation

matrix_series_rep ( const matrix< series< C, V >, U > &  m2) [inline]

Definition at line 98 of file series_matrix.hpp.


Member Function Documentation

syntactic expression ( const syntactic &  z) const [inline]

Definition at line 100 of file series_matrix.hpp.

References mmx::flatten().

                                                  {
    return flatten (m, z); }
void Increase_order ( nat  l) [inline]

Definition at line 102 of file series_matrix.hpp.

References mmx::cols(), mmx::increase_order(), and mmx::rows().

                              {
    series_rep<Matrix,V>::Increase_order (l);
    for (nat i=0; i<rows(m); i++)
      for (nat j=0; j<cols(m); j++)
        increase_order (m (i, j), l); }
matrix<C,U> next ( ) [inline]

Definition at line 107 of file series_matrix.hpp.

References mmx::C, mmx::cols(), Matrix, and mmx::rows().

                 {
    nat i, j, nr= rows (m), nc= cols (m);
    Matrix coeff (C (0), nr, nc);
    for (i=0; i<nr; i++)
      for (j=0; j<nc; j++)
        coeff (i, j)= m (i, j) [this->n];
    return coeff; }

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