Changeset 1517 in Sophya for trunk/SophyaLib/TArray/utilarr.h


Ignore:
Timestamp:
Jun 12, 2001, 6:21:13 PM (24 years ago)
Author:
ansari
Message:

Rajout classe ComplexMathArray pour operations sur tableaux complexes (real(), imag() ,...) - Ajout fonctions TArray::ReadASCII() (pas encore implementee) et TArray::WriteASCII() - Reza 12/6/2001

File:
1 edited

Legend:

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

    r1404 r1517  
    1818/*! \ingroup TArray
    1919  \typedef Arr_DoubleFunctionOfX
    20   \brief define a function of float which returns a double
     20  \brief define a function of double which returns a double
    2121*/
    2222typedef double (* Arr_DoubleFunctionOfX) (double x);
    2323/*! \ingroup TArray
    2424  \typedef Arr_FloatFunctionOfX
    25   \brief define a function of float which returns a double
     25  \brief define a function of float which returns a float
    2626*/
    2727typedef float  (* Arr_FloatFunctionOfX)  (float x);
     28
     29/*! \ingroup TArray
     30  \typedef Arr_ComplexDoubleFunctionOfX
     31  \brief define a function of a complex<double> which returns a complex<double>
     32*/
     33typedef complex<double> (* Arr_ComplexDoubleFunctionOfX) (complex<double> x);
     34/*! \ingroup TArray
     35  \typedef Arr_ComplexFloatFunctionOfX
     36  \brief define a function of complex<float> which returns a complex<float>
     37*/
     38typedef float  (* Arr_ComplexFloatFunctionOfX)  (complex<float> x);
    2839
    2940//////////////////////////////////////////////////////////
Note: See TracChangeset for help on using the changeset viewer.