Changeset 206 for trunk/archive/pslib/include/psStdArrays.h
- Timestamp:
- Mar 10, 2004, 12:07:04 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psStdArrays.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psStdArrays.h
r205 r206 38 38 * generally. 39 39 */ 40 typedef float psFloat; 41 typedef int psInt; 42 typedef complex float psComplex; 43 typedef double psDouble; 40 typedef float psFloat; ///< BITPIX -32 (float) 41 typedef float psF32; ///< BITPIX -32 (float) 42 typedef double psDouble; 43 typedef double psF64; ///< BITPIX -64 (double) 44 45 typedef complex float psComplex; 46 47 typedef int8_t psS8; 48 typedef int16_t psS16; 49 typedef int32_t psS32; 50 typedef int64_t psS64; 51 typedef int8_t psChar; 52 typedef int16_t psShort; 53 typedef int32_t psInt; 54 typedef int64_t psLong; 55 56 typedef uint8_t psU8; ///< BITPIX 8 57 typedef uint16_t psU16; ///< BITPIX 16 58 typedef uint32_t psU32; ///< BITPIX 32 59 typedef uint64_t psU64; 60 typedef uint8_t psUchar; ///< BITPIX 8 61 typedef uint16_t psUshort; ///< BITPIX 16 62 typedef uint32_t psUint; ///< BITPIX 32 63 typedef uint64_t psUlong; 44 64 45 65 /** An array of real numbers */ … … 52 72 /** An array of complex numbers */ 53 73 PS_DECLARE_ARRAY_TYPE(psComplex); 54 PS_CREATE_ARRAY_TYPE(psComplex);55 74 56 75 /** An array of integers */ 57 76 PS_DECLARE_ARRAY_TYPE(psInt); 58 PS_CREATE_ARRAY_TYPE(psInt);59 77 60 78 /** An array of double-precision real numbers */ 61 79 PS_DECLARE_ARRAY_TYPE(psDouble); 62 PS_CREATE_ARRAY_TYPE(psDouble); 80 81 PS_DECLARE_ARRAY_TYPE(psFloatArray); ///< Declare an array of real vectors (psFloatArrayArray). 63 82 64 83 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
