Changeset 974 for trunk/psLib/src/dataManip
- Timestamp:
- Jun 9, 2004, 3:58:06 PM (22 years ago)
- Location:
- trunk/psLib/src/dataManip
- Files:
-
- 6 edited
-
psFFT.h (modified) (3 diffs)
-
psFunctions.h (modified) (4 diffs)
-
psMatrix.h (modified) (4 diffs)
-
psMinimize.h (modified) (1 diff)
-
psStats.h (modified) (2 diffs)
-
psVectorFFT.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/dataManip/psFFT.h
r828 r974 3 3 * @brief Contains FFT transforms functions 4 4 * 5 * @ingroup Transform 6 * 5 7 * @author Robert DeSonia, MHPCC 6 8 * 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 $ 9 11 * 10 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 16 18 #include "psImage.h" 17 19 #include "psVector.h" 20 21 /// @addtogroup Transform 22 /// @{ 18 23 19 24 /** Details on FFT implementation (private). */ … … 42 47 psVector* psVectorPowerSpectrum(psVector* out, const psVector* in); 43 48 49 /// @} 44 50 45 51 #endif -
trunk/psLib/src/dataManip/psFunctions.h
r889 r974 3 3 4 4 /** \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 * \{ 7 11 */ 8 12 … … 67 71 68 72 /** Functions **************************************************************/ 69 /** \addtogroup MathGroup Math Utilities70 * \{71 */72 73 73 74 /** Constructor */ … … 129 130 ); 130 131 131 /* \} */ // End of MathGroup Functions132 133 132 /*****************************************************************************/ 134 133 … … 174 173 } 175 174 psDPolynomial4D; 176 177 /** Functions **************************************************************/178 /** \addtogroup MathGroup Math Utilities179 * \{180 */181 175 182 176 /** Constructor */ -
trunk/psLib/src/dataManip/psMatrix.h
r908 r974 17 17 * operate only with the psF64 data type. 18 18 * 19 * @ingroup Matrix 20 * 19 21 * @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 $ 23 25 * 24 26 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 28 30 #define PSMATRIX_H 29 31 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 /// @{ 45 34 46 35 /** LU Decomposition of psImage matrix. 47 36 * 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 49 38 * the outImage or outPerm arguments, then they will be automatically created. The input image must 50 39 * be square. This function operates only with the psF64 data type. Input and output arguments should not be … … 77 66 /** Invert psImage matrix. 78 67 * 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 80 69 * specifies NULL as the outImage argument, then it will automatically be created. The input image must be 81 70 * square. This function operates only with the psF64 data type. Input and output arguments should not be … … 172 161 ); 173 162 163 /// @} 164 174 165 #endif -
trunk/psLib/src/dataManip/psMinimize.h
r794 r974 4 4 /** \file psMinimize.h 5 5 * \brief minimization operations 6 * \ingroup MathGroup6 * \ingroup Stats 7 7 */ 8 8 9 9 /** Functions **************************************************************/ 10 /** \addtogroup MathGroup Math Utilities10 /** \addtogroup Stats 11 11 * \{ 12 12 */ -
trunk/psLib/src/dataManip/psStats.h
r889 r974 6 6 /** \file psStats.h 7 7 * \brief basic statistical operations 8 * \ingroup MathGroup8 * \ingroup Stats 9 9 */ 10 10 #include "psVector.h" 11 12 /// @addtogroup Stats 13 /// @{ 14 11 15 /****************************************************************************** 12 16 Statistical functions and data structures. … … 112 116 113 117 118 /// @} 119 114 120 #endif 115 121 -
trunk/psLib/src/dataManip/psVectorFFT.h
r828 r974 3 3 * @brief Contains FFT transforms functions 4 4 * 5 * @ingroup Transform 6 * 5 7 * @author Robert DeSonia, MHPCC 6 8 * 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 $ 9 11 * 10 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 16 18 #include "psImage.h" 17 19 #include "psVector.h" 20 21 /// @addtogroup Transform 22 /// @{ 18 23 19 24 /** Details on FFT implementation (private). */ … … 42 47 psVector* psVectorPowerSpectrum(psVector* out, const psVector* in); 43 48 49 /// @} 44 50 45 51 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
