IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 21, 2004, 1:25:14 PM (22 years ago)
Author:
gusciora
Message:

...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/dataManip/tst_psHist02.c

    r2721 r2780  
    6666
    6767        myHist = psHistogramAlloc( LOWER, UPPER, numBins );
    68         myHist = psVectorHistogram( myHist, myData, NULL, 0 );
     68        myHist = psVectorHistogram( myHist, myData, NULL, NULL, 0 );
    6969
    7070        for ( i = 0;i < numBins;i++ ) {
     
    9191
    9292        myHist = psHistogramAlloc( LOWER, UPPER, numBins );
    93         myHist = psVectorHistogram( myHist, myData, myMask, 1 );
     93        myHist = psVectorHistogram( myHist, myData, NULL, myMask, 1 );
    9494
    9595        for ( i = 0;i < numBins;i++ ) {
     
    121121
    122122    psLogMsg(__func__,PS_LOG_INFO,"Following should generate an error message.");
    123     myHist2 = psVectorHistogram( NULL, myData, NULL, 0 );
     123    myHist2 = psVectorHistogram( NULL, myData, NULL, NULL, 0 );
    124124    if ( myHist2 != NULL ) {
    125125        printf( "ERROR: myHist2!=NULL\n" );
     
    136136    myHist = psHistogramAlloc( LOWER, UPPER, numBins );
    137137    psLogMsg(__func__,PS_LOG_INFO,"Following should generate an error message.");
    138     myHist = psVectorHistogram( myHist, NULL, NULL, 0 );
     138    myHist = psVectorHistogram( myHist, NULL, NULL, NULL, 0 );
    139139    if ( myHist == NULL ) {
    140140        printf( "ERROR: myHist==NULL\n" );
     
    155155    myData->n = myData->nalloc;
    156156    myHist = psHistogramAlloc(LOWER, UPPER, numBins);
    157     myHist = psVectorHistogram(myHist, NULL, NULL, 0);
     157    myHist = psVectorHistogram(myHist, NULL, NULL, NULL, 0);
    158158    if (myHist == NULL) {
    159159        printf("ERROR: myHist==NULL\n");
Note: See TracChangeset for help on using the changeset viewer.