Changeset 70 in pacpusframework for trunk/include/Pacpus/PacpusTools/matrice.h


Ignore:
Timestamp:
01/10/13 11:24:23 (11 years ago)
Author:
Marek Kurdej
Message:

Added: more documentation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/Pacpus/PacpusTools/matrice.h

    r69 r70  
    5757    }
    5858
     59    /// @todo Documentation
    5960    matrice &operator+=(const matrice &m); //m+=m1
     61    /// @todo Documentation
    6062    matrice &operator-=(const matrice &m); //m-=m1
    6163
     64    /// @todo Documentation
    6265    matrice operator+(const matrice &m1) const; //m=m1+m2
     66    /// @todo Documentation
    6367    matrice operator-(const matrice &m1) const; //m=m1-m2
     68    /// @todo Documentation
    6469    matrice operator*(const matrice &m1) const; //m=m1*m2
    6570
     71    /// @todo Documentation
    6672    matrice &operator+=(double x); //m+=x
     73    /// @todo Documentation
    6774    matrice &operator-=(double x); //m-=x
    6875
     76    /// @todo Documentation
    6977    matrice operator+(double x)const; //m+x
     78    /// @todo Documentation
    7079    matrice operator-(double x)const; //m-x
     80    /// @todo Documentation
    7181    matrice operator*(double x)const; //m*x
     82    /// @todo Documentation
    7283    matrice operator/(double x)const; //m/x
    7384
     85    /// @todo Documentation
    7486    friend matrice operator+(double x,matrice m1) {return m1+x ;} // x+m ;
     87    /// @todo Documentation
    7588    friend matrice operator-(double x,matrice m1) {return m1-x ;} // x-m ;
     89    /// @todo Documentation
    7690    friend matrice operator*(double x,matrice m1) {return m1*x ;} // x*m ;
    7791
    78     matrice T(); //transposition
    79     matrice I(); //inversion
     92    /// Matrix transpose.
     93    matrice T();
     94    /// Matrix inverse.
     95    matrice I();
    8096
     97    /// @todo Documentation
    8198    double &operator()(unsigned short int i, unsigned short int j); // ecriture m(i,j)=x
     99    /// @todo Documentation
    82100    double operator()(unsigned short int i, unsigned short int j) const; //lecture x=m(i,j)
     101    /// @todo Documentation
    83102    double &operator()(unsigned short int i); // ecriture m(i)=x
     103    /// @todo Documentation
    84104    double operator()(unsigned short int i) const; //lecture x=m(i)
    85105
     106    /// @todo Documentation
    86107    void print(const char *nom);
    87108};
Note: See TracChangeset for help on using the changeset viewer.