Changeset 1517 in Sophya for trunk/SophyaLib/TArray/utilarr.h
- Timestamp:
- Jun 12, 2001, 6:21:13 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/TArray/utilarr.h
r1404 r1517 18 18 /*! \ingroup TArray 19 19 \typedef Arr_DoubleFunctionOfX 20 \brief define a function of floatwhich returns a double20 \brief define a function of double which returns a double 21 21 */ 22 22 typedef double (* Arr_DoubleFunctionOfX) (double x); 23 23 /*! \ingroup TArray 24 24 \typedef Arr_FloatFunctionOfX 25 \brief define a function of float which returns a double25 \brief define a function of float which returns a float 26 26 */ 27 27 typedef 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 */ 33 typedef 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 */ 38 typedef float (* Arr_ComplexFloatFunctionOfX) (complex<float> x); 28 39 29 40 //////////////////////////////////////////////////////////
Note:
See TracChangeset
for help on using the changeset viewer.