IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 20, 2005, 3:40:10 PM (21 years ago)
Author:
drobbin
Message:

made minor changes in accordance with newest api-delta doc

File:
1 edited

Legend:

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

    r4388 r4589  
    2121 *  @author Ross Harman, MHPCC
    2222 *
    23  *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
    24  *  @date $Date: 2005-06-25 01:15:01 $
     23 *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
     24 *  @date $Date: 2005-07-21 01:40:10 $
    2525 *
    2626 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    4545    psImage* out,                      ///< Image to return, or NULL.
    4646    psVector** perm,                   ///< Output permutation vector used by psMatrixLUSolve.
    47     psImage* in                        ///< Image to decompose.
     47    const psImage* in                  ///< Image to decompose.
    4848);
    4949
     
    8787 *  @return  float: Determinant from psImage.
    8888 */
    89 float *psMatrixDeterminant(
     89float psMatrixDeterminant(
    9090    const psImage* in                  ///< Image used to calculate determinant.
    9191);
     
    102102psImage* psMatrixMultiply(
    103103    psImage* out,                      ///< Matrix to return, or NULL.
    104     psImage* in1,                      ///< First input image.
    105     psImage* in2                       ///< Second input image.
     104    const psImage* in1,                ///< First input image.
     105    const psImage* in2                 ///< Second input image.
    106106);
    107107
     
    116116 */
    117117psImage* psMatrixTranspose(
    118     psImage* out,                 ///< Image to return, or NULL
    119     const psImage* inImage             ///< Image to transpose
     118    psImage* out,                      ///< Image to return, or NULL
     119    const psImage* in                  ///< Image to transpose
    120120);
    121121
     
    130130psImage* psMatrixEigenvectors(
    131131    psImage* out,                      ///< Eigenvectors to return, or NULL.
    132     psImage* in                        ///< Input image.
     132    const psImage* in                  ///< Input image.
    133133);
    134134
Note: See TracChangeset for help on using the changeset viewer.