IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 9, 2004, 1:34:58 PM (22 years ago)
Author:
desonia
Message:

cleanup of some indent-induced madness.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/dataManip/psMatrix.c

    r1407 r1440  
    2121 *  @author Ross Harman, MHPCC
    2222 *   
    23  *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
    24  *  @date $Date: 2004-08-07 00:06:06 $
     23 *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
     24 *  @date $Date: 2004-08-09 23:34:57 $
    2525 *
    2626 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    160160/*****************************************************************************/
    161161
    162 psImage *psMatrixLUD(psImage * outImage, psVector * outPerm, psImage * inImage)
     162psImage* psMatrixLUD(psImage* outImage, psVector* outPerm, psImage* inImage)
    163163{
    164164    int signum = 0;
     
    205205}
    206206
    207 psVector *psMatrixLUSolve(psVector * outVector, const psImage * inImage, const psVector * inVector, const
    208                           psVector * inPerm)
     207psVector* psMatrixLUSolve(psVector* outVector, const psImage* inImage, const psVector* inVector, const
     208                          psVector* inPerm)
    209209{
    210210    int arraySize = 0;
     
    258258}
    259259
    260 psImage *psMatrixInvert(psImage * outImage, const psImage * inImage, float *restrict det)
     260psImage* psMatrixInvert(psImage* outImage, const psImage* inImage, float *restrict det)
    261261{
    262262    int signum = 0;
     
    312312}
    313313
    314 float *psMatrixDeterminant(const psImage * restrict inImage)
     314float *psMatrixDeterminant(const psImage* restrict inImage)
    315315{
    316316    int signum = 0;
     
    354354}
    355355
    356 psImage *psMatrixMultiply(psImage * outImage, psImage * inImage1, psImage * inImage2)
     356psImage* psMatrixMultiply(psImage* outImage, psImage* inImage1, psImage* inImage2)
    357357{
    358358    int arraySize = 0;
     
    396396}
    397397
    398 psImage *psMatrixTranspose(psImage * outImage, const psImage * inImage)
     398psImage* psMatrixTranspose(psImage* outImage, const psImage* inImage)
    399399{
    400400    int arraySize = 0;
     
    433433}
    434434
    435 psImage *psMatrixEigenvectors(psImage * outImage, psImage * inImage)
     435psImage* psMatrixEigenvectors(psImage* outImage, psImage* inImage)
    436436{
    437437    int numRows = 0;
     
    477477}
    478478
    479 psVector *psMatrixToVector(psVector * outVector, psImage * inImage)
     479psVector* psMatrixToVector(psVector* outVector, psImage* inImage)
    480480{
    481481    int size = 0;
     
    536536}
    537537
    538 psImage *psVectorToMatrix(psImage * outImage, psVector * inVector)
     538psImage* psVectorToMatrix(psImage* outImage, psVector* inVector)
    539539{
    540540    int size = 0;
Note: See TracChangeset for help on using the changeset viewer.