IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 4, 2006, 4:48:35 PM (20 years ago)
Author:
drobbin
Message:

Fixed some tiny things and working on fixing psImageSmooth (not done).

Location:
trunk/psLib/src/mathtypes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/mathtypes/psImage.c

    r6912 r7071  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.103 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2006-04-20 01:13:11 $
     11 *  @version $Revision: 1.104 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2006-05-05 02:48:34 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    714714
    715715    char buffer[20];
    716     for (int j = 0; j < a[0].numRows; j++) {
    717         for (int i = 0; i < a[0].numCols; i++) {
     716    //    for (int j = 0; j < a[0].numRows; j++) {
     717    //        for (int i = 0; i < a[0].numCols; i++) {
     718    for (int j = 0; j < a->numRows; j++) {
     719        for (int i = 0; i < a->numCols; i++) {
    718720            snprintf (buffer,20, "%f  ", p_psImageGetElementF64(a, i, j));
    719721            write(fd,buffer,strlen(buffer));
  • trunk/psLib/src/mathtypes/psVector.c

    r7056 r7071  
    99*  @author Robert DeSonia, MHPCC
    1010*
    11 *  @version $Revision: 1.73 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2006-05-04 00:09:11 $
     11*  @version $Revision: 1.74 $ $Name: not supported by cvs2svn $
     12*  @date $Date: 2006-05-05 02:48:34 $
    1313*
    1414*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    207207    output = psVectorRecycle(output, nElements, type);
    208208    if (nElements == 0) {
    209         psWarning("Warning: psVector was copied with 0 elements!\n");
     209        //        psWarning("Warning: psVector was copied with 0 elements!\n");
    210210        return output;
    211211    }
Note: See TracChangeset for help on using the changeset viewer.