IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 368


Ignore:
Timestamp:
Mar 31, 2004, 11:44:57 PM (22 years ago)
Author:
Paul Price
Message:

Defined LU decomposition and solution of an equation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psMatrix.h

    r344 r368  
    4040                  );
    4141
     42/** LU Decomposition of a matrix */
     43psImage *
     44psMatrixLUD(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 */
     49psVector *
     50psMatrixLUSolve(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
    4255/***********************************************************************************************************/
    4356
Note: See TracChangeset for help on using the changeset viewer.