Changeset 4388 for trunk/psLib/src/math/psMatrix.h
- Timestamp:
- Jun 24, 2005, 3:15:01 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/math/psMatrix.h (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psMatrix.h
r4385 r4388 21 21 * @author Ross Harman, MHPCC 22 22 * 23 * @version $Revision: 1.1 8$ $Name: not supported by cvs2svn $24 * @date $Date: 2005-06-25 0 0:51:28$23 * @version $Revision: 1.19 $ $Name: not supported by cvs2svn $ 24 * @date $Date: 2005-06-25 01:15:01 $ 25 25 * 26 26 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 43 43 */ 44 44 psImage* psMatrixLUD( 45 psImage* out Image,///< Image to return, or NULL.46 psVector** outPerm,///< Output permutation vector used by psMatrixLUSolve.47 psImage* in Image///< Image to decompose.45 psImage* out, ///< Image to return, or NULL. 46 psVector** perm, ///< Output permutation vector used by psMatrixLUSolve. 47 psImage* in ///< Image to decompose. 48 48 ); 49 49 … … 58 58 */ 59 59 psVector* psMatrixLUSolve( 60 psVector* out Vector,///< Vector to return, or NULL.61 const psImage* luImage,///< LU-decomposed matrix.62 const psVector* inVector,///< Vector right-hand-side of equation.63 const psVector* inPerm///< Permutation vector resulting from psMatrixLUD function.60 psVector* out, ///< Vector to return, or NULL. 61 const psImage* LU, ///< LU-decomposed matrix. 62 const psVector* RHS, ///< Vector right-hand-side of equation. 63 const psVector* perm ///< Permutation vector resulting from psMatrixLUD function. 64 64 ); 65 65 … … 74 74 */ 75 75 psImage* psMatrixInvert( 76 psImage* out, ///< Image to return, or NULL for in-place substitution.77 const psImage* in, ///< Image to be inverted78 float *det ///< Determinant to return, or NULL76 psImage* out, ///< Image to return, or NULL for in-place substitution. 77 const psImage* in, ///< Image to be inverted 78 float *determinant ///< Determinant to return, or NULL 79 79 ); 80 80 … … 101 101 */ 102 102 psImage* psMatrixMultiply( 103 psImage* out Image,///< Matrix to return, or NULL.104 psImage* in Image1,///< First input image.105 psImage* in Image2///< Second input image.103 psImage* out, ///< Matrix to return, or NULL. 104 psImage* in1, ///< First input image. 105 psImage* in2 ///< Second input image. 106 106 ); 107 107 … … 116 116 */ 117 117 psImage* psMatrixTranspose( 118 psImage* out Image, ///< Image to return, or NULL118 psImage* out, ///< Image to return, or NULL 119 119 const psImage* inImage ///< Image to transpose 120 120 );
Note:
See TracChangeset
for help on using the changeset viewer.
