IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 1573


Ignore:
Timestamp:
Aug 18, 2004, 3:38:22 PM (22 years ago)
Author:
Paul Price
Message:

Added type C64.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psType.h

    r704 r1573  
    2020    PS_TYPE_F64,                        ///< Double-precision floating point
    2121    PS_TYPE_C32,                        ///< Complex numbers consisting of floating point
    22     PS_TYPE_OTHER,                      ///< Something else that's not supported for arithmetic
     22    PS_TYPE_C64,                        ///< Complex numbers consisting of doubles
     23    PS_TYPE_OTHER                       ///< Something else that's not supported for arithmetic
    2324} psElemType;
    2425
     
    3435/** The type of a data type */
    3536typedef struct {
     37    psDimen dimen;                      ///< The dimensionality
    3638    psElemType type;                    ///< The type
    37     psDimen dimen;                      ///< The dimensionality
    3839} psType;
    3940
     
    4748typedef double         psF64;           ///< BITPIX -64 (double)
    4849typedef complex float  psC32;
     50typedef complex double psC64;
    4951
    5052typedef int8_t         psS8;
Note: See TracChangeset for help on using the changeset viewer.