IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 945


Ignore:
Timestamp:
Jun 9, 2004, 8:23:22 AM (22 years ago)
Author:
harman
Message:

Updated comments

Location:
trunk/psLib/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/collections/psSort.h

    r645 r945  
    11/** @file  psSort.h
    22 *
    3  *  @brief Sorts arrays
     3 *  @brief Sorts vectors
    44 *
    5  *  The psSort functions use the qsort() stdlib function with a user-defined callback to sort an array of 
    6  *  floats. The qsort function requires the starting point of the array, number of elements in the array, size 
     5 *  The psSort functions use the qsort() stdlib function with a user-defined callback to sort an array of
     6 *  floats. The qsort function requires the starting point of the array, number of elements in the array, size
    77 *  of each element, and a pointer to a callback comparison function. Once called, qsort() will sort the array
    88 *  contents in ascending order according to the comparison function. The comparison function is called with
    9  *  two arguments that point to the objects being compared - in this case two floats. The comparison function 
     9 *  two arguments that point to the objects being compared - in this case two floats. The comparison function
    1010 *  must return an integer less than, equal to, or greater than zero if the first argument is considered to be
    1111 *  respectively less than, equal to, or greater than the second. If two members compare as equal, their order
     
    1313 *
    1414 *  @author Ross Harman, MHPCC
    15  *   
    16  *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
    17  *  @date $Date: 2004-05-12 18:07:22 $
     15 *
     16 *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
     17 *  @date $Date: 2004-06-09 18:23:22 $
    1818 *
    1919 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    5050/** Creates an array of indices based on sort odred of float array.
    5151 *
    52  *  Sorts an array of floats and creates an integer array holding indices of sorted float values based on 
     52 *  Sorts an array of floats and creates an integer array holding indices of sorted float values based on
    5353 *  pre-sort index positions.
    5454 *
  • trunk/psLib/src/collections/psVector.c

    r871 r945  
    1 /** @file  psVector.h
     1/** @file  psVector.c
    22 *
    33 *  @brief Contains support for basic vector types
    44 *
    5  *  This file defines types and functions for one dimensional vectors which include:
    6  *      char
    7  *      short
    8  *      int
    9  *      long
    10  *      unsigned char
    11  *      unsigned short
    12  *      unsigned int
    13  *      unsigned long
    14  *      float
    15  *      double
    16  *      complex float
    17  *      void **
     5 *  This file defines the basic type for a vector struct and functions useful
     6 *  in manupulating vectors.
    187 *
    198 *  @author Ross Harman, MHPCC
    20  *   
    21  *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    22  *  @date $Date: 2004-06-04 21:10:26 $
     9 *
     10 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2004-06-09 18:20:01 $
    2312 *
    2413 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
  • trunk/psLib/src/mathtypes/psVector.c

    r871 r945  
    1 /** @file  psVector.h
     1/** @file  psVector.c
    22 *
    33 *  @brief Contains support for basic vector types
    44 *
    5  *  This file defines types and functions for one dimensional vectors which include:
    6  *      char
    7  *      short
    8  *      int
    9  *      long
    10  *      unsigned char
    11  *      unsigned short
    12  *      unsigned int
    13  *      unsigned long
    14  *      float
    15  *      double
    16  *      complex float
    17  *      void **
     5 *  This file defines the basic type for a vector struct and functions useful
     6 *  in manupulating vectors.
    187 *
    198 *  @author Ross Harman, MHPCC
    20  *   
    21  *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    22  *  @date $Date: 2004-06-04 21:10:26 $
     9 *
     10 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2004-06-09 18:20:01 $
    2312 *
    2413 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
Note: See TracChangeset for help on using the changeset viewer.