IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 12, 2004, 8:43:42 PM (22 years ago)
Author:
gusciora
Message:

I removed the docs target from the install target, because it was driving me
crazy. I fixed some things with psStats.c. I produced the first working
test case for psStats.c

This version of the code only builds with the following:

make
make install
make
make install

File:
1 edited

Legend:

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

    r657 r659  
    183183    } else {
    184184        for (i=0;i<myVector->n;i++) {
    185             mean+= maskVector->vec.i[i];
    186         }
    187     }
     185            mean+= myVector->vec.f[i];
     186        }
     187    }
     188    mean/= myVector->n;
    188189    return(mean);
    189190}
Note: See TracChangeset for help on using the changeset viewer.