IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 3, 2006, 3:01:34 PM (20 years ago)
Author:
drobbin
Message:

Updated files to reflect psArray, psVector, & psPixels changes in psLib that set n=0 upon allocation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/imsubtract/pmSubtractSky.c

    r6325 r6511  
    66 *  @author GLG, MHPCC
    77 *
    8  *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2006-02-06 21:03:25 $
     8 *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2006-03-04 01:01:33 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
    1212 *
    13  *     
     13 *
    1414 *
    1515 */
     
    341341    psImage *Aout = psImageAlloc(localPolyTerms, localPolyTerms, PS_TYPE_F64);
    342342    psVector *B = psVectorAlloc(localPolyTerms, PS_TYPE_F64);
     343    B->n = B->nalloc;
    343344    psVector *outPerm = NULL;
    344345
     
    407408    PS_ASSERT_IMAGE_NON_EMPTY(Aout, NULL);
    408409    psVector *C = psVectorAlloc(localPolyTerms, PS_TYPE_F64);
     410    C->n = C->nalloc;
    409411    psMatrixLUSolve(C, Aout, B, outPerm);
    410412
Note: See TracChangeset for help on using the changeset viewer.