Changeset 4589 for trunk/psLib/src/math/psMatrix.h
- Timestamp:
- Jul 20, 2005, 3:40:10 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
r4388 r4589 21 21 * @author Ross Harman, MHPCC 22 22 * 23 * @version $Revision: 1. 19$ $Name: not supported by cvs2svn $24 * @date $Date: 2005-0 6-25 01:15:01$23 * @version $Revision: 1.20 $ $Name: not supported by cvs2svn $ 24 * @date $Date: 2005-07-21 01:40:10 $ 25 25 * 26 26 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 45 45 psImage* out, ///< Image to return, or NULL. 46 46 psVector** perm, ///< Output permutation vector used by psMatrixLUSolve. 47 psImage* in///< Image to decompose.47 const psImage* in ///< Image to decompose. 48 48 ); 49 49 … … 87 87 * @return float: Determinant from psImage. 88 88 */ 89 float *psMatrixDeterminant(89 float psMatrixDeterminant( 90 90 const psImage* in ///< Image used to calculate determinant. 91 91 ); … … 102 102 psImage* psMatrixMultiply( 103 103 psImage* out, ///< Matrix to return, or NULL. 104 psImage* in1,///< First input image.105 psImage* in2///< Second input image.104 const psImage* in1, ///< First input image. 105 const psImage* in2 ///< Second input image. 106 106 ); 107 107 … … 116 116 */ 117 117 psImage* psMatrixTranspose( 118 psImage* out, ///< Image to return, or NULL119 const psImage* in Image///< Image to transpose118 psImage* out, ///< Image to return, or NULL 119 const psImage* in ///< Image to transpose 120 120 ); 121 121 … … 130 130 psImage* psMatrixEigenvectors( 131 131 psImage* out, ///< Eigenvectors to return, or NULL. 132 psImage* in///< Input image.132 const psImage* in ///< Input image. 133 133 ); 134 134
Note:
See TracChangeset
for help on using the changeset viewer.
