IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 12313


Ignore:
Timestamp:
Mar 8, 2007, 3:15:49 AM (19 years ago)
Author:
rhl
Message:

Merged from mainline 2007/03/08

Location:
branches/rel-1_0/psLib/src/math
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/rel-1_0/psLib/src/math/psMatrix.c

    r10999 r12313  
    2222 *  @author Andy Becker, University of Washington (SVD).
    2323 *
    24  *  @version $Revision: 1.47 $ $Name: not supported by cvs2svn $
    25  *  @date $Date: 2007-01-09 22:38:53 $
     24 *  @version $Revision: 1.47.2.1 $ $Name: not supported by cvs2svn $
     25 *  @date $Date: 2007-03-08 13:15:49 $
    2626 *
    2727 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    878878
    879879// This code supplied by Andy Becker (becker@astro.washington.edu)
    880 psImage *psMatrixSVDSolve(psImage* evec, psVector* eval, const psImage* in)
     880psImage *psMatrixSVD(psImage* evec, psVector* eval, const psImage* in)
    881881{
    882882    #define psMatrixSVD_EXIT {psFree(evec); psFree(eval); return NULL;}
     
    915915        /* make sure that these things are sorted! */
    916916        if (i > 0) {
    917             assert(eval->data.F64[i] > eval->data.F64[i-1]);
     917            assert(eval->data.F64[i] <= eval->data.F64[i-1]);
    918918        }
    919919    }
  • branches/rel-1_0/psLib/src/math/psMatrix.h

    r11248 r12313  
    1919 * @author Ross Harman, MHPCC
    2020 *
    21  * @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
    22  * @date $Date: 2007-01-23 22:47:23 $
     21 * @version $Revision: 1.26.2.1 $ $Name: not supported by cvs2svn $
     22 * @date $Date: 2007-03-08 13:15:49 $
    2323 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
    2424 */
     
    177177
    178178/// Single value decomposition, provided by Andy Becker
    179 psImage *psMatrixSVDSolve(psImage* evec, psVector* eval, const psImage* in);
     179psImage *psMatrixSVD(psImage* evec, psVector* eval, const psImage* in);
    180180
    181181/// @}
Note: See TracChangeset for help on using the changeset viewer.