IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 13, 2004, 1:16:19 PM (22 years ago)
Author:
eugene
Message:

psFloatArray, psDoubleArray, psIntArray, etc merged into
psVector. psVector is analogous to psImage. reference to the old
forms have been converted to psVector. the file psStdArrays.h has
been removed and replaced with psVector.h (containing the vector
functions) and psTypes.h (containing the basic data types)

File:
1 edited

Legend:

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

    r519 r671  
    1313
    1414/** Sort an array. Inputs not restrict-ed to allow sort in place */
    15 psFloatArray *
    16 psSort(psFloatArray *out,               ///< Sorted array to return. May be NULL
    17        const psFloatArray *restrict myArray     ///< Array to sort
    18     );
     15psVector *
     16psSort(psVector *out,                   ///< Sorted array to return. May be NULL
     17       const psVector *restrict in)     ///< Array to sort
     18;
    1919
    2020/** Sort an array, along with some other stuff.  Returns an index array */
    21 psIntArray *
    22 psSortIndex(psIntArray *restrict out,   ///< Output index array (may be NULL)
    23             const psFloatArray *restrict myArray ///< Array to sort
    24     );
     21psVector *
     22psSortIndex(psVector *restrict out,     ///< Output index array (may be NULL)
     23            const psVector *restrict in) ///< Array to sort
     24;
    2525
    2626/* \} */ // End of MathGroup Functions
Note: See TracChangeset for help on using the changeset viewer.