Changeset 368
- Timestamp:
- Mar 31, 2004, 11:44:57 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psMatrix.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psMatrix.h
r344 r368 40 40 ); 41 41 42 /** LU Decomposition of a matrix */ 43 psImage * 44 psMatrixLUD(psImage *out, ///< Matrix to return, or NULL 45 psImage *myMatrix ///< Matrix to decompose 46 ); 47 48 /** LU Solution. Solves for and returns x in the equation Ax = b */ 49 psVector * 50 psMatrixLUSolve(psVector *out, ///< Vector to return, or NULL 51 const psImage *luMatrix, ///< LU-decomposed matrix 52 const psVector *rhsVector ///< right-hand-side of the equation 53 ); 54 42 55 /***********************************************************************************************************/ 43 56
Note:
See TracChangeset
for help on using the changeset viewer.
