Changeset 935 in Sophya for trunk/SophyaLib/TArray/sopemtx.h


Ignore:
Timestamp:
Apr 14, 2000, 4:03:40 PM (25 years ago)
Author:
ansari
Message:

doc + inversion de matrice template real+complex

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/TArray/sopemtx.h

    r926 r935  
    77#include "tvector.h"
    88
    9 // doivent imperativement reste avant le namespace SOPHYA !
     9////////////////////////////////////////////////////////////////
     10////////////////////////////////////////////////////////////////
     11//------------------------------------------------------------//
     12//                     Classe TMatrixRC                       //
     13//------------------------------------------------------------//
     14////////////////////////////////////////////////////////////////
     15////////////////////////////////////////////////////////////////
     16
     17namespace SOPHYA {
     18
    1019/*!
    11   \class SOPHYA::SimpleMatrixOperation
     20  \class SimpleMatrixOperation
    1221  \ingroup TArray
    1322  Class for simple operation on TMatrix
    1423  \sa TMatrix TArray
    1524  */
    16 /*!
    17   \class SOPHYA::LinFitter
    18   \ingroup TArray
    19   Class for linear fitting
    20   \sa TMatrix TArray
    21   */
    22 
    23 namespace SOPHYA {
    24 
    25 ////////////////////////////////////////////////////////////////
     25
    2626//! Class for simple operation on TMatrix
    2727template <class T>
     
    3232};
    3333
    34 ////////////////////////////////////////////////////////////////
     34} // Fin du namespace
     35
     36////////////////////////////////////////////////////////////////
     37////////////////////////////////////////////////////////////////
     38//------------------------------------------------------------//
     39//              Resolution de systemes lineaires              //
     40//------------------------------------------------------------//
     41////////////////////////////////////////////////////////////////
     42////////////////////////////////////////////////////////////////
     43
     44namespace SOPHYA {
     45
     46//------------------------------------------------------------
    3547// Resolution du systeme A*C = B
     48//------------------------------------------------------------
     49
    3650//! Solve A*C = B for C in place and return determinant
    3751/*! \ingroup TArray \fn LinSolveInPlace */
     
    7084}
    7185
    72 ////////////////////////////////////////////////////////////////
     86//------------------------------------------------------------
    7387// Resolution du systeme A*C = B, avec C retourne dans B
     88//------------------------------------------------------------
     89
    7490//! Solve A*C = B and return C and determinant
    7591/*! \ingroup TArray \fn LinSolve */
     
    108124}
    109125
    110 ////////////////////////////////////////////////////////////////
    111 // Inverse d'une matrice
     126} // Fin du namespace
     127
     128////////////////////////////////////////////////////////////////
     129////////////////////////////////////////////////////////////////
     130//------------------------------------------------------------//
     131//                   Inverse d'une matrice                    //
     132//------------------------------------------------------------//
     133////////////////////////////////////////////////////////////////
     134////////////////////////////////////////////////////////////////
     135
     136namespace SOPHYA {
     137
    112138//! To inverse a TMatrix
    113139/*! \ingroup TArray \fn Inverse */
     
    127153  {return SimpleMatrixOperation< complex<r_8> >::Inverse(A);}
    128154
    129 //--------------------------------------
    130 //        Linear fitting
    131 //--------------------------------------
     155} // Fin du namespace
     156
     157
     158////////////////////////////////////////////////////////////////
     159////////////////////////////////////////////////////////////////
     160//------------------------------------------------------------//
     161//                   Linear fitting                           //
     162//------------------------------------------------------------//
     163////////////////////////////////////////////////////////////////
     164////////////////////////////////////////////////////////////////
     165
     166namespace SOPHYA {
     167
     168/*!
     169  \class LinFitter
     170  \ingroup TArray
     171  Class for linear fitting
     172  \sa TMatrix TArray
     173  */
    132174
    133175//!  Class for linear fitting
Note: See TracChangeset for help on using the changeset viewer.