Changeset 2421 in Sophya for trunk/SophyaLib/TArray/tmatrix.cc


Ignore:
Timestamp:
Aug 8, 2003, 3:07:06 PM (22 years ago)
Author:
ansari
Message:
  • Modifications methodes TMatrix::NRows() ::NCols() --> Peuvent etre

appelees sur des matrices non allouees.

  • Declaration const pour TMatrix::Transpose() et ::Rearrange(..)
  • remplacement THROW par throw ds Linfitter avec message explicite

Reza 08/08/2003

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/TArray/tmatrix.cc

    r2267 r2421  
    1 // $Id: tmatrix.cc,v 1.23 2002-11-15 09:35:44 ansari Exp $
     1// $Id: tmatrix.cc,v 1.24 2003-08-08 13:07:06 ansari Exp $
    22//                         C.Magneville          04/99
    33#include "machdefs.h"
     
    291291 */
    292292template <class T>
    293 TMatrix<T> TMatrix<T>::Transpose()
     293TMatrix<T> TMatrix<T>::Transpose() const
    294294{
    295295  TMatrix<T> tm(*this);
     
    305305 */
    306306template <class T>
    307 TMatrix<T> TMatrix<T>::Transpose(short mm)
     307TMatrix<T> TMatrix<T>::Transpose(short mm) const
    308308{
    309309  if (mm == SameMemoryMapping) mm = GetMemoryMapping(); 
     
    322322 */
    323323template <class T>
    324 TMatrix<T> TMatrix<T>::Rearrange(short mm)
     324TMatrix<T> TMatrix<T>::Rearrange(short mm) const
    325325{
    326326  if ( mm == SameMemoryMapping)  mm = GetMemoryMapping();
Note: See TracChangeset for help on using the changeset viewer.