IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 9, 2004, 3:58:06 PM (22 years ago)
Author:
desonia
Message:

Added doxygen group tags.

Location:
trunk/psLib/src/dataManip
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/dataManip/psFFT.h

    r828 r974  
    33 *  @brief Contains FFT transforms functions
    44 *
     5 *  @ingroup Transform
     6 *
    57 *  @author Robert DeSonia, MHPCC
    68 *
    7  *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2004-06-02 19:41:57 $
     9 *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2004-06-10 01:58:06 $
    911 *
    1012 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    1618#include "psImage.h"
    1719#include "psVector.h"
     20
     21/// @addtogroup Transform
     22/// @{
    1823
    1924/** Details on FFT implementation (private). */
     
    4247psVector* psVectorPowerSpectrum(psVector* out, const psVector* in);
    4348
     49/// @}
    4450
    4551#endif
  • trunk/psLib/src/dataManip/psFunctions.h

    r889 r974  
    33
    44/** \file psFunctions.h
    5  *  \brief Standard Mathematical Functions.
    6  *  \ingroup MathGroup
     5 *  \brief Standard Mathematical Functions.
     6 *  \ingroup Stats
     7 */
     8
     9/** \addtogroup Stats
     10 *  \{
    711 */
    812
     
    6771
    6872/** Functions **************************************************************/
    69 /** \addtogroup MathGroup Math Utilities
    70  *  \{
    71  */
    7273
    7374/** Constructor */
     
    129130                  );
    130131
    131 /* \} */ // End of MathGroup Functions
    132 
    133132/*****************************************************************************/
    134133
     
    174173}
    175174psDPolynomial4D;
    176 
    177 /** Functions **************************************************************/
    178 /** \addtogroup MathGroup Math Utilities
    179  *  \{
    180  */
    181175
    182176/** Constructor */
  • trunk/psLib/src/dataManip/psMatrix.h

    r908 r974  
    1717 *  operate only with the psF64 data type.
    1818 *
     19 *  @ingroup Matrix
     20 *
    1921 *  @author Ross Harman, MHPCC
    20  *   
    21  *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
    22  *  @date $Date: 2004-06-08 01:58:03 $
     22 *
     23 *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
     24 *  @date $Date: 2004-06-10 01:58:06 $
    2325 *
    2426 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2830#define PSMATRIX_H
    2931
    30 /******************************************************************************/
    31 /*  DEFINE STATEMENTS                                                         */
    32 /******************************************************************************/
    33 
    34 // None
    35 
    36 /******************************************************************************/
    37 /*  TYPE DEFINITIONS                                                          */
    38 /******************************************************************************/
    39 
    40 // None
    41 
    42 /*****************************************************************************/
    43 /* FUNCTION PROTOTYPES                                                       */
    44 /*****************************************************************************/
     32/// @addtogroup Matrix
     33/// @{
    4534
    4635/** LU Decomposition of psImage matrix.
    4736 *
    48  *  Performs a LU decomposition on a psImage matrix and returns the LU matrix. If the user specifies NULL for 
     37 *  Performs a LU decomposition on a psImage matrix and returns the LU matrix. If the user specifies NULL for
    4938 *  the outImage or outPerm arguments, then they will be automatically created. The input image must
    5039 *  be square. This function operates only with the psF64 data type. Input and output arguments should not be
     
    7766/** Invert psImage matrix.
    7867 *
    79  *  Inverts a psImage matrix and returns the determinant as an option through the argument list. If the user 
     68 *  Inverts a psImage matrix and returns the determinant as an option through the argument list. If the user
    8069 *  specifies NULL as the outImage argument, then it will automatically be created. The input image must be
    8170 *  square. This function operates only with the psF64 data type. Input and output arguments should not be
     
    172161);
    173162
     163/// @}
     164
    174165#endif
  • trunk/psLib/src/dataManip/psMinimize.h

    r794 r974  
    44/** \file psMinimize.h
    55 *  \brief minimization operations
    6  *  \ingroup MathGroup
     6 *  \ingroup Stats
    77 */
    88
    99/** Functions **************************************************************/
    10 /** \addtogroup MathGroup Math Utilities
     10/** \addtogroup Stats
    1111 *  \{
    1212 */
  • trunk/psLib/src/dataManip/psStats.h

    r889 r974  
    66/** \file psStats.h
    77 *  \brief basic statistical operations
    8  *  \ingroup MathGroup
     8 *  \ingroup Stats
    99 */
    1010#include "psVector.h"
     11
     12/// @addtogroup Stats
     13/// @{
     14
    1115/******************************************************************************
    1216    Statistical functions and data structures.
     
    112116
    113117
     118/// @}
     119
    114120#endif
    115121
  • trunk/psLib/src/dataManip/psVectorFFT.h

    r828 r974  
    33 *  @brief Contains FFT transforms functions
    44 *
     5 *  @ingroup Transform
     6 *
    57 *  @author Robert DeSonia, MHPCC
    68 *
    7  *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2004-06-02 19:41:57 $
     9 *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2004-06-10 01:58:06 $
    911 *
    1012 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    1618#include "psImage.h"
    1719#include "psVector.h"
     20
     21/// @addtogroup Transform
     22/// @{
    1823
    1924/** Details on FFT implementation (private). */
     
    4247psVector* psVectorPowerSpectrum(psVector* out, const psVector* in);
    4348
     49/// @}
    4450
    4551#endif
Note: See TracChangeset for help on using the changeset viewer.