IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 9, 2006, 2:49:38 PM (20 years ago)
Author:
Paul Price
Message:

Renaming psGaussJordan to psMatrixGJSolve, moving function into psMatrix.c

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psMatrix.h

    r4589 r7102  
    2121 *  @author Ross Harman, MHPCC
    2222 *
    23  *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
    24  *  @date $Date: 2005-07-21 01:40:10 $
     23 *  @version $Revision: 1.21 $ $Name: not supported by cvs2svn $
     24 *  @date $Date: 2006-05-10 00:49:38 $
    2525 *
    2626 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    6262    const psVector* RHS,               ///< Vector right-hand-side of equation.
    6363    const psVector* perm               ///< Permutation vector resulting from psMatrixLUD function.
     64);
     65
     66/** Gauss-Jordan numerical solver.
     67 *
     68 *  @return bool:   True if successful.
     69 */
     70bool psMatrixGJSolve(
     71    psImage *a,                        ///< Matrix to be solved
     72    psVector *b                        ///< Vector of values
    6473);
    6574
Note: See TracChangeset for help on using the changeset viewer.