Index: trunk/psLib/src/dataManip/psFFT.h
===================================================================
--- trunk/psLib/src/dataManip/psFFT.h	(revision 908)
+++ trunk/psLib/src/dataManip/psFFT.h	(revision 974)
@@ -3,8 +3,10 @@
  *  @brief Contains FFT transforms functions
  *
+ *  @ingroup Transform
+ *
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-02 19:41:57 $
+ *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-10 01:58:06 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -16,4 +18,7 @@
 #include "psImage.h"
 #include "psVector.h"
+
+/// @addtogroup Transform
+/// @{
 
 /** Details on FFT implementation (private). */
@@ -42,4 +47,5 @@
 psVector* psVectorPowerSpectrum(psVector* out, const psVector* in);
 
+/// @}
 
 #endif
Index: trunk/psLib/src/dataManip/psFunctions.h
===================================================================
--- trunk/psLib/src/dataManip/psFunctions.h	(revision 908)
+++ trunk/psLib/src/dataManip/psFunctions.h	(revision 974)
@@ -3,6 +3,10 @@
 
 /** \file psFunctions.h
- *  \brief Standard Mathematical Functions. 
- *  \ingroup MathGroup
+ *  \brief Standard Mathematical Functions.
+ *  \ingroup Stats
+ */
+
+/** \addtogroup Stats
+ *  \{
  */
 
@@ -67,7 +71,4 @@
 
 /** Functions **************************************************************/
-/** \addtogroup MathGroup Math Utilities
- *  \{
- */
 
 /** Constructor */
@@ -129,6 +130,4 @@
                   );
 
-/* \} */ // End of MathGroup Functions
-
 /*****************************************************************************/
 
@@ -174,9 +173,4 @@
 }
 psDPolynomial4D;
-
-/** Functions **************************************************************/
-/** \addtogroup MathGroup Math Utilities
- *  \{
- */
 
 /** Constructor */
Index: trunk/psLib/src/dataManip/psMatrix.h
===================================================================
--- trunk/psLib/src/dataManip/psMatrix.h	(revision 908)
+++ trunk/psLib/src/dataManip/psMatrix.h	(revision 974)
@@ -17,8 +17,10 @@
  *  operate only with the psF64 data type.
  *
+ *  @ingroup Matrix
+ *
  *  @author Ross Harman, MHPCC
- *   
- *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-08 01:58:03 $
+ *
+ *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-10 01:58:06 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -28,23 +30,10 @@
 #define PSMATRIX_H
 
-/******************************************************************************/
-/*  DEFINE STATEMENTS                                                         */
-/******************************************************************************/
-
-// None
-
-/******************************************************************************/
-/*  TYPE DEFINITIONS                                                          */
-/******************************************************************************/
-
-// None
-
-/*****************************************************************************/
-/* FUNCTION PROTOTYPES                                                       */
-/*****************************************************************************/
+/// @addtogroup Matrix
+/// @{
 
 /** LU Decomposition of psImage matrix.
  *
- *  Performs a LU decomposition on a psImage matrix and returns the LU matrix. If the user specifies NULL for 
+ *  Performs a LU decomposition on a psImage matrix and returns the LU matrix. If the user specifies NULL for
  *  the outImage or outPerm arguments, then they will be automatically created. The input image must 
  *  be square. This function operates only with the psF64 data type. Input and output arguments should not be 
@@ -77,5 +66,5 @@
 /** Invert psImage matrix.
  *
- *  Inverts a psImage matrix and returns the determinant as an option through the argument list. If the user 
+ *  Inverts a psImage matrix and returns the determinant as an option through the argument list. If the user
  *  specifies NULL as the outImage argument, then it will automatically be created. The input image must be 
  *  square. This function operates only with the psF64 data type. Input and output arguments should not be 
@@ -172,3 +161,5 @@
 );
 
+/// @}
+
 #endif
Index: trunk/psLib/src/dataManip/psMinimize.h
===================================================================
--- trunk/psLib/src/dataManip/psMinimize.h	(revision 908)
+++ trunk/psLib/src/dataManip/psMinimize.h	(revision 974)
@@ -4,9 +4,9 @@
 /** \file psMinimize.h
  *  \brief minimization operations
- *  \ingroup MathGroup
+ *  \ingroup Stats
  */
 
 /** Functions **************************************************************/
-/** \addtogroup MathGroup Math Utilities
+/** \addtogroup Stats
  *  \{
  */
Index: trunk/psLib/src/dataManip/psStats.h
===================================================================
--- trunk/psLib/src/dataManip/psStats.h	(revision 908)
+++ trunk/psLib/src/dataManip/psStats.h	(revision 974)
@@ -6,7 +6,11 @@
 /** \file psStats.h
  *  \brief basic statistical operations
- *  \ingroup MathGroup
+ *  \ingroup Stats
  */
 #include "psVector.h"
+
+/// @addtogroup Stats
+/// @{
+
 /******************************************************************************
     Statistical functions and data structures.
@@ -112,4 +116,6 @@
 
 
+/// @}
+
 #endif
 
Index: trunk/psLib/src/dataManip/psVectorFFT.h
===================================================================
--- trunk/psLib/src/dataManip/psVectorFFT.h	(revision 908)
+++ trunk/psLib/src/dataManip/psVectorFFT.h	(revision 974)
@@ -3,8 +3,10 @@
  *  @brief Contains FFT transforms functions
  *
+ *  @ingroup Transform
+ *
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-02 19:41:57 $
+ *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-10 01:58:06 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -16,4 +18,7 @@
 #include "psImage.h"
 #include "psVector.h"
+
+/// @addtogroup Transform
+/// @{
 
 /** Details on FFT implementation (private). */
@@ -42,4 +47,5 @@
 psVector* psVectorPowerSpectrum(psVector* out, const psVector* in);
 
+/// @}
 
 #endif
