- Timestamp:
- May 3, 2010, 8:50:52 AM (16 years ago)
- Location:
- branches/simtest_nebulous_branches
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
psLib/src/math/psMatrix.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/simtest_nebulous_branches
- Property svn:mergeinfo changed
-
branches/simtest_nebulous_branches/psLib/src/math/psMatrix.h
r24084 r27840 66 66 */ 67 67 psImage *psMatrixLUInvert( 68 psImage *out, ///< place result here if not NULL69 const psImage* LU, ///< LU-decomposed matrix.70 const psVector* perm ///< Permutation vector resulting from psMatrixLUD function.68 psImage *out, ///< place result here if not NULL 69 const psImage* LU, ///< LU-decomposed matrix. 70 const psVector* perm ///< Permutation vector resulting from psMatrixLUD function. 71 71 ); 72 72 … … 186 186 ); 187 187 188 /// Single value decomposition, provided by Andy Becker 189 psImage *psMatrixSVD(psImage* evec, psVector* eval, const psImage* in); 188 /// Solve a matrix equation using Singular Value Decomposition 189 /// 190 /// Solves Ax = b for x 191 psVector *psMatrixSolveSVD( 192 psVector *solution, ///< Solution to output, or NULL 193 const psImage *matrix, ///< Matrix to be solved 194 const psVector *vector, ///< Vector of values 195 float thresh ///< Threshold relative to maximum for trimming singular values 196 ); 197 198 /// Single value decomposition (original by Andy Becker, updated by EAM) 199 bool psMatrixSVD(psImage **U, psVector **w, psImage **V, const psImage *A); 190 200 191 201 /// @}
Note:
See TracChangeset
for help on using the changeset viewer.
