Changeset 3101 in Sophya


Ignore:
Timestamp:
Nov 2, 2006, 3:57:20 PM (19 years ago)
Author:
ansari
Message:

Petits ajouts ds les commentaires pour doxygen TArray, TMatrix - Reza 02/11/2006

Location:
trunk/SophyaLib/TArray
Files:
2 edited

Legend:

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

    r2938 r3101  
    4141  of identical size small arrays. For example, TArray<T> tab(2,2, 1000) can be used
    4242  to hold 1000 2x2 matrices.
     43
     44  \warning Notice that array elements along the X axis are contiguous in memory,
     45  independent of the array rank (number of dimensions), for packed arrays.
    4346
    4447  \b Array is a typedef for double precision floating point arrays ( TArray<r_8> )
  • trunk/SophyaLib/TArray/tmatrix.cc

    r2927 r3101  
    1 // $Id: tmatrix.cc,v 1.36 2006-04-03 08:55:26 ansari Exp $
     1// $Id: tmatrix.cc,v 1.37 2006-11-02 14:57:20 ansari Exp $
    22//                         C.Magneville          04/99
    33#include "sopnamsp.h"
     
    2424  higher dimension arrays (3D for examples) can be used to represent large
    2525  number of small matrices or vectors.
     26
     27  \warning Matrix row, column indices (r,c) correspond to array indices
     28  (r=jy, c=ix) for CMemoryMapping and to (r=ix, c=jy) for FortranMemoryMapping.
    2629
    2730  \b Matrix is a typedef for double precision floating point matrix ( TMatrix<r_8> ).
Note: See TracChangeset for help on using the changeset viewer.