Changeset 404 for branches


Ignore:
Timestamp:
Nov 27, 2005, 1:31:30 AM (18 years ago)
Author:
Jari Häkkinen
Message:

gslapi compiles, but matrix.cc not complete.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/better_matrix_class/lib/gslapi/matrix.cc

    r403 r404  
    119119
    120120
     121  // Jari, checkout GSL transpose support in GSL manual 8.4.9
     122  /*
     123  matrix matrix::transpose(void) const
     124  {
     125    matrix res(columns(),rows());
     126    gsl_matrix_transpose_memcpy(res.m_,m_);
     127    return res;
     128  }
     129  */
     130
     131
     132
    121133  vector matrix::TEMP_col_return(size_t column) const
    122134  {
     
    139151
    140152
     153  /*
    141154  matrix matrix::operator*( const matrix &other ) const
    142155  {
     
    174187    return res;
    175188  }
    176 
    177 
    178 
    179   matrix& matrix::operator=( const matrix& other )
     189  */
     190
     191
     192  const matrix& matrix::operator=( const matrix& other )
    180193  {
    181194    if ( this != &other ) {
     
    185198    }
    186199    return *this;
    187   }
    188 
    189 
    190 
    191   // Jari, checkout GSL transpose support in GSL manual 8.4.9
    192   matrix matrix::transpose(void) const
    193   {
    194     matrix res(columns(),rows());
    195     gsl_matrix_transpose_memcpy(res.m_,m_);
    196     return res;
    197200  }
    198201
Note: See TracChangeset for help on using the changeset viewer.