IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 24, 2005, 3:15:01 PM (21 years ago)
Author:
drobbin
Message:

changed arguments as requested in apidelta-report-cycle6

File:
1 edited

Legend:

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

    r4385 r4388  
    2121 *  @author Ross Harman, MHPCC
    2222 *
    23  *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
    24  *  @date $Date: 2005-06-25 00:51:28 $
     23 *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
     24 *  @date $Date: 2005-06-25 01:15:01 $
    2525 *
    2626 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    4343 */
    4444psImage* psMatrixLUD(
    45     psImage* outImage,                 ///< Image to return, or NULL.
    46     psVector** outPerm,                ///< Output permutation vector used by psMatrixLUSolve.
    47     psImage* inImage                   ///< Image to decompose.
     45    psImage* out,                      ///< Image to return, or NULL.
     46    psVector** perm,                   ///< Output permutation vector used by psMatrixLUSolve.
     47    psImage* in                        ///< Image to decompose.
    4848);
    4949
     
    5858 */
    5959psVector* psMatrixLUSolve(
    60     psVector* outVector,               ///< Vector to return, or NULL.
    61     const psImage* luImage,            ///< LU-decomposed matrix.
    62     const psVector* inVector,          ///< Vector right-hand-side of equation.
    63     const psVector* inPerm             ///< Permutation vector resulting from psMatrixLUD function.
     60    psVector* out,                     ///< Vector to return, or NULL.
     61    const psImage* LU,                 ///< LU-decomposed matrix.
     62    const psVector* RHS,               ///< Vector right-hand-side of equation.
     63    const psVector* perm               ///< Permutation vector resulting from psMatrixLUD function.
    6464);
    6565
     
    7474 */
    7575psImage* psMatrixInvert(
    76     psImage* out,                 ///< Image to return, or NULL for in-place substitution.
    77     const psImage* in,            ///< Image to be inverted
    78     float *det                         ///< Determinant to return, or NULL
     76    psImage* out,                      ///< Image to return, or NULL for in-place substitution.
     77    const psImage* in,                 ///< Image to be inverted
     78    float *determinant                 ///< Determinant to return, or NULL
    7979);
    8080
     
    101101 */
    102102psImage* psMatrixMultiply(
    103     psImage* outImage,                 ///< Matrix to return, or NULL.
    104     psImage* inImage1,                 ///< First input image.
    105     psImage* inImage2                  ///< Second input image.
     103    psImage* out,                      ///< Matrix to return, or NULL.
     104    psImage* in1,                      ///< First input image.
     105    psImage* in2                       ///< Second input image.
    106106);
    107107
     
    116116 */
    117117psImage* psMatrixTranspose(
    118     psImage* outImage,                 ///< Image to return, or NULL
     118    psImage* out,                 ///< Image to return, or NULL
    119119    const psImage* inImage             ///< Image to transpose
    120120);
Note: See TracChangeset for help on using the changeset viewer.