IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 2, 2009, 10:59:20 AM (17 years ago)
Author:
Paul Price
Message:

Merging branches/pap for dual convolution.

Location:
trunk/psLib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib

  • trunk/psLib/src/math/psMatrix.h

    r24084 r26001  
    6666 */
    6767psImage *psMatrixLUInvert(
    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.
     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.
    7171);
    7272
     
    186186);
    187187
     188/// Solve a matrix equation using Singular Value Decomposition
     189///
     190/// Solves Ax = b for x
     191psVector *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    );
     196
     197
    188198/// Single value decomposition, provided by Andy Becker
    189199psImage *psMatrixSVD(psImage* evec, psVector* eval, const psImage* in);
Note: See TracChangeset for help on using the changeset viewer.