IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 22, 2005, 11:52:49 AM (21 years ago)
Author:
desonia
Message:

* empty log message *

File:
1 edited

Legend:

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

    r3341 r3476  
    2121 *  @author Robert DeSonia, MHPCC
    2222 *
    23  *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
    24  *  @date $Date: 2005-02-28 23:34:10 $
     23 *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
     24 *  @date $Date: 2005-03-22 21:52:49 $
    2525 *
    2626 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    216216
    217217    (*outPerm)->n = numCols;
    218     perm.data = (*outPerm)->data.V;
     218    perm.data = (psPtr)((*outPerm)->data.U8);
    219219    lu = gsl_matrix_alloc(numRows, numCols);
    220220
     
    273273    outVector->n = numCols;
    274274    perm.size = inPerm->n;
    275     perm.data = inPerm->data.V;
     275    perm.data = (psPtr)(inPerm->data.U8);
    276276
    277277    // Solve for {x} in equation: {b} = [A]{x}
     
    580580    }
    581581
    582     memcpy(outVector->data.V, inImage->data.V[0], size);
     582    memcpy(outVector->data.U8, inImage->data.U8[0], size);
    583583
    584584    return outVector;
     
    637637    PS_CHECK_DIMEN_AND_TYPE(outImage, PS_DIMEN_IMAGE, VECTORTOMATRIX_CLEANUP);
    638638
    639     memcpy(outImage->data.V[0], inVector->data.V, size);
     639    memcpy(outImage->data.U8[0], inVector->data.U8, size);
    640640
    641641    return outImage;
Note: See TracChangeset for help on using the changeset viewer.