IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 15, 2004, 3:20:03 PM (22 years ago)
Author:
eugene
Message:

added Doxygen \file and \defgroup entries
some basic reorganization

File:
1 edited

Legend:

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

    r153 r247  
    22#define PS_SORT_H
    33
    4 #include "psStdArrays.h"
    5 
    6 /* Sorting */
     4/** \file psSort.h
     5 *  \brief general sorting operations
     6 *  \ingroup MathGroup
     7 */
    78
    89/** Sort an array. Inputs not restrict-ed to allow sort in place */
     
    1011psSort(psFloatArray *out,               //!< Sorted array to return. May be NULL
    1112       const psFloatArray *myArray      //!< Array to sort
    12        );
     13    );
    1314
    1415/** Sort an array, along with some other stuff.  Returns an index array */
    1516psIntArray *
    16 psCoSort(psIntArray *restrict out;      //!< Output index array (may be NULL)
    17          const psFloatArray *restrict myArray //!< Array to sort
    18         );
     17psSortIndex(psIntArray *restrict out;   //!< Output index array (may be NULL)
     18            const psFloatArray *restrict myArray //!< Array to sort
     19    );
    1920
    2021#endif
Note: See TracChangeset for help on using the changeset viewer.