IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 5624 for trunk/psLib/src/math


Ignore:
Timestamp:
Nov 29, 2005, 4:00:11 PM (21 years ago)
Author:
desonia
Message:

merged eam_r8.0_b2 into CVS trunk.

Location:
trunk/psLib/src/math
Files:
3 edited

Legend:

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

    r5530 r5624  
    1010 *  @author EAM, IfA
    1111 *
    12  *  @version $Revision: 1.145 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-11-16 23:06:19 $
     12 *  @version $Revision: 1.146 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-11-30 02:00:09 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    14411441}
    14421442
     1443// here is the definition for BuildSums4D.  ifdef'ed away until it is used
     1444// by psPolynomial4DFit..
     1445# if (0)
     1446    /******************************************************************************
     1447    BuildSums4D(sums, x, y, z, t, nXterm, nYterm, nZterm, nTterm). equiv to
     1448    BuildSums2D(). The result is returned as a double ****
     1449     *****************************************************************************/
     1450    static double ****BuildSums4D(
     1451        psF64 ****sums,
     1452        psF64 x,
     1453        psF64 y,
     1454        psF64 z,
     1455        psF64 t,
     1456        psS32 nXterm,
     1457        psS32 nYterm,
     1458        psS32 nZterm,
     1459        psS32 nTterm)
     1460{
     1461    psS32 nXsum = 0;
     1462    psS32 nYsum = 0;
     1463    psS32 nZsum = 0;
     1464    psS32 nTsum = 0;
     1465    psF64 xSum = 1.0;
     1466    psF64 ySum = 1.0;
     1467    psF64 zSum = 1.0;
     1468    psF64 tSum = 1.0;
     1469
     1470    nXsum = 2*nXterm;
     1471    nYsum = 2*nYterm;
     1472    nZsum = 2*nZterm;
     1473    nTsum = 2*nTterm;
     1474    if (sums == NULL) {
     1475        sums = (psF64 ****) psAlloc (nXsum*sizeof(psF64));
     1476        for (int i = 0; i < nXsum; i++) {
     1477            sums[i] = (psF64 ***) psAlloc (nYsum*sizeof(psF64));
     1478            for (int j = 0; j < nYsum; j++) {
     1479                sums[i][j] = (psF64 **) psAlloc (nZsum*sizeof(psF64));
     1480                for (int k = 0; k < nZsum; k++) {
     1481                    sums[i][j][k] = (psF64 *) psAlloc (nTsum*sizeof(psF64));
     1482                }
     1483            }
     1484        }
     1485    }
     1486    // careful with this function: there is no size checking and realloc for reuse
     1487
     1488    tSum = 1.0;
     1489    for (int m = 0; m < nTsum; m++) {
     1490        zSum = tSum;
     1491        for (int k = 0; k < nZsum; k++) {
     1492            ySum = zSum;
     1493            for (int j = 0; j < nYsum; j++) {
     1494                xSum = ySum;
     1495                for (int i = 0; i < nXsum; i++) {
     1496                    sums[i][j][k][m] = xSum;
     1497                    xSum *= x;
     1498                }
     1499                ySum *= y;
     1500            }
     1501            zSum *= z;
     1502        }
     1503        tSum *= t;
     1504    }
     1505    return (sums);
     1506}
     1507# endif /* BuildSums4D */
    14431508
    14441509/******************************************************************************
     
    14471512in the output vector.  This routine works on single-precision polynomials with
    14481513double precision data.
     1514 
     1515XXX EAM : this function is now deprecated: psPolynomial2DEvalVector handles F32 and F64
    14491516 *****************************************************************************/
    14501517psVector *Polynomial2DEvalVectorD(
     
    16581725    // xSums look like: 1, x, x^2, ... x^(2n+1)
    16591726    // Build the B and A data structs.
     1727    // XXX EAM : use temp pointers eg vB = B->data.F64 to save redirects
     1728    // XXX EAM : this function is only valid for data vectors of F64
    16601729    for (int k = 0; k < f->n; k++) {
    1661         if ((mask != NULL) && mask->data.U8[k])
     1730        if ((mask != NULL) && (mask->data.U8[k] && maskValue)) {
    16621731            continue;
     1732        }
    16631733        if (x != NULL) {
    16641734            xSums = BuildSums1D(xSums, x->data.F64[k], nTerm);
     
    16701740            wt = 1.0;
    16711741        } else {
    1672             // this should filter fErr == 0 values
    1673             wt = 1.0 / PS_SQR(fErr->data.F64[k]);
     1742            // this filters fErr == 0 values
     1743            wt = (fErr->data.F64[k] == 0) ? 0.0 : 1.0 / PS_SQR(fErr->data.F64[k]);
    16741744        }
    16751745        for (int i = 0; i < nTerm; i++) {
     
    16861756    }
    16871757
    1688     // GaussJordan version
    1689     if (0) {
    1690         // does the solution in place
    1691         psGaussJordan (A, B);
    1692 
    1693         // the first nTerm entries in B correspond directly to the desired
    1694         // polynomial coefficients.  this is only true for the 1D case
    1695         for (int k = 0; k < nTerm; k++) {
    1696             myPoly->coeff[k] = B->data.F64[k];
    1697         }
    1698     } else {
    1699         // LUD version of the fit
    1700         psImage *ALUD = NULL;
    1701         psVector* outPerm = NULL;
    1702         psVector* coeffs = NULL;
    1703 
    1704         ALUD = psImageAlloc(nTerm, nTerm, PS_TYPE_F64);
    1705         ALUD = psMatrixLUD(ALUD, &outPerm, A);
    1706         coeffs = psMatrixLUSolve(coeffs, ALUD, B, outPerm);
    1707         for (int k = 0; k < nTerm; k++) {
    1708             myPoly->coeff[k] = coeffs->data.F64[k];
    1709         }
    1710         psFree(ALUD);
    1711         psFree(coeffs);
    1712         psFree(outPerm);
     1758    // does the solution in place
     1759    psGaussJordan (A, B);
     1760
     1761    // the first nTerm entries in B correspond directly to the desired
     1762    // polynomial coefficients.  this is only true for the 1D case
     1763    for (int k = 0; k < nTerm; k++) {
     1764        myPoly->coeff[k] = B->data.F64[k];
    17131765    }
    17141766
     
    18191871}
    18201872
    1821 
     1873// This function accepts F32 and F64 input vectors.
    18221874psPolynomial1D *psVectorClipFitPolynomial1D(
    18231875    psPolynomial1D *poly,
     
    18271879    const psVector *f,
    18281880    const psVector *fErr,
    1829     const psVector *x)
     1881    const psVector *xIn)
    18301882{
    18311883    // Internal pointers for possibly NULL vectors.
    1832     psVector *x32 = NULL;
     1884    psVector *x = NULL;
    18331885
    18341886    PS_ASSERT_POLY_NON_NULL(poly, NULL);
     
    18361888    PS_ASSERT_PTR_NON_NULL(stats, NULL);
    18371889    PS_ASSERT_VECTOR_NON_NULL(f, NULL);
    1838     PS_ASSERT_VECTOR_TYPE(f, PS_TYPE_F32, NULL);
     1890    PS_ASSERT_VECTOR_TYPE_F32_OR_F64(f, NULL);
    18391891    if (mask != NULL) {
    18401892        PS_ASSERT_VECTORS_SIZE_EQUAL(f, mask, NULL);
    18411893        PS_ASSERT_VECTOR_TYPE(mask, PS_TYPE_U8, NULL);
    18421894    }
    1843     if (x != NULL) {
    1844         PS_ASSERT_VECTORS_SIZE_EQUAL(f, x, NULL);
    1845         PS_ASSERT_VECTOR_TYPE(x, PS_TYPE_F32, NULL);
     1895    if (xIn != NULL) {
     1896        PS_ASSERT_VECTORS_SIZE_EQUAL(f, xIn, NULL);
     1897        PS_ASSERT_VECTOR_TYPE_F32_OR_F64(xIn, NULL);
    18461898    }
    18471899    if (fErr != NULL) {
    18481900        PS_ASSERT_VECTORS_SIZE_EQUAL(f, fErr, NULL);
    1849         PS_ASSERT_VECTOR_TYPE(fErr, PS_TYPE_F32, NULL);
    1850     }
    1851 
    1852     psLogMsg(__func__, PS_LOG_WARN, "WARNING: This function has not been implemented.  Returning NULL.\n");
     1901        PS_ASSERT_VECTOR_TYPE_F32_OR_F64(fErr, NULL);
     1902    }
     1903
     1904    // assign sequence vector if xIn is NULL
     1905    if (xIn == NULL) {
     1906        x = psVectorCreate (NULL, 0, f->n, 1, f->type.type);
     1907    } else {
     1908        x = (psVector *) xIn;
     1909    }
     1910
     1911    // clipping range defined by min and max and/or clipSigma
     1912    float minClipSigma;
     1913    float maxClipSigma;
     1914    if (isfinite(stats->max)) {
     1915        maxClipSigma = fabs(stats->clipSigma);
     1916    } else {
     1917        maxClipSigma = fabs(stats->max);
     1918    }
     1919    if (isfinite(stats->min)) {
     1920        minClipSigma = fabs(stats->clipSigma);
     1921    } else {
     1922        minClipSigma = fabs(stats->min);
     1923    }
     1924    psVector *fit   = NULL;
     1925    psVector *resid = psVectorAlloc (x->n, PS_TYPE_F64);
     1926
     1927    // eventual expansion: user supplies one of various stats option pairs,
     1928    // eg (SAMPLE_MEAN | SAMPLE_STDEV) and the correct pair is used to
     1929    // evaluate the clipping sigma
     1930    // for now, for the SAMPLE_MEDIAN and SAMPLE_STDEV to be used
     1931    stats->options |= (PS_STAT_SAMPLE_MEDIAN | PS_STAT_SAMPLE_STDEV);
     1932
     1933    for (int N = 0; N < stats->clipIter; N++) {
     1934        int Nkeep = 0;
     1935
     1936        poly = psVectorFitPolynomial1D (poly, mask, maskValue, f, fErr, x);
     1937        fit = psPolynomial1DEvalVector (poly, x);
     1938        resid = (psVector *) psBinaryOp (resid, (void *) f, "-", (void *) fit);
     1939
     1940        stats  = psVectorStats (stats, resid, NULL, mask, maskValue);
     1941        float minClipValue = -minClipSigma*stats->sampleStdev;
     1942        float maxClipValue = +maxClipSigma*stats->sampleStdev;
     1943
     1944        // set mask if pts are not valid
     1945        // we are masking out any point which is out of range
     1946        // recovery is not allowed with this scheme
     1947        for (int i = 0; i < resid->n; i++) {
     1948            if ((mask != NULL) && (mask->data.U8[i] & maskValue)) {
     1949                continue;
     1950            }
     1951            if (resid->data.F64[i] - stats->sampleMedian > maxClipValue) {
     1952                if (mask != NULL) {
     1953                    mask->data.U8[i] |= 0x01;
     1954                }
     1955                continue;
     1956            }
     1957            if (resid->data.F64[i] - stats->sampleMedian < minClipValue) {
     1958                if (mask != NULL) {
     1959                    mask->data.U8[i] |= 0x01;
     1960                }
     1961                continue;
     1962            }
     1963            Nkeep ++;
     1964        }
     1965
     1966        psTrace (".psphot.VectorClipFit", 4, "keeping %d of %d pts for fit\n",
     1967                 Nkeep, x->n);
     1968
     1969        psFree (fit);
     1970    }
    18531971    // Free psVectors that were created for NULL arguments.
    1854     if (x == NULL) {
    1855         psFree(x32);
    1856     }
    1857     return(NULL);
     1972    if (xIn == NULL) {
     1973        psFree(x);
     1974    }
     1975    // Free other local temporary variables
     1976    psFree (resid);
     1977
     1978    return (poly);
    18581979}
    18591980
     
    19292050    // Build the B and A data structs.
    19302051    for (int k  = 0; k < x->n; k++) {
    1931         if ((mask != NULL) && mask->data.U8[k])
     2052        if ((mask != NULL) && (mask->data.U8[k] & maskValue)) {
    19322053            continue;
     2054        }
     2055
    19332056        Sums = BuildSums2D(Sums, x->data.F64[k], y->data.F64[k], nXterm, nYterm);
    19342057
     
    19362059            wt = 1.0;
    19372060        } else {
    1938             // XXX: this should probably by fErr^2 !!
    1939             // this should filter fErr == 0 values
    1940             // XXX: Why isn't this fErr^2?
    1941             wt = 1.0 / fErr->data.F64[k];
     2061            // this filters fErr == 0 values
     2062            wt = (fErr->data.F64[k] == 0.0) ? 0.0 : 1.0 / PS_SQR(fErr->data.F64[k]);
    19422063        }
    19432064
     
    19622083
    19632084    // does the solution in place
    1964     // XXX: Check return codes!
    19652085    psGaussJordan (A, B);
    19662086
    1967     // XXX: Check return codes!
    1968     // ALUD = psMatrixLUD(ALUD, &outPerm, A);
    1969     // coeffs = psMatrixLUSolve(coeffs, ALUD, B, outPerm);
    1970 
     2087    // select the appropriate solution entries
    19712088    for (int n = 0; n < nXterm; n++) {
    19722089        for (int m = 0; m < nYterm; m++) {
     
    19852102
    19862103
     2104// XXX EAM : I have implemented a single function to handle the mask/nomask cases
     2105//           this function can be deprecated
    19872106psPolynomial2D* RobustFit2D_nomask(
    19882107    psPolynomial2D* poly,
     
    22512370    PS_ASSERT_PTR_NON_NULL(stats, NULL);
    22522371    PS_ASSERT_VECTOR_NON_NULL(f, NULL);
    2253     PS_ASSERT_VECTOR_TYPE(f, PS_TYPE_F32, NULL);
     2372    PS_ASSERT_VECTOR_TYPE_F32_OR_F64(f, NULL);
    22542373    if (mask != NULL) {
    22552374        PS_ASSERT_VECTORS_SIZE_EQUAL(f, mask, NULL);
     
    22582377    PS_ASSERT_VECTOR_NON_NULL(x, NULL);
    22592378    PS_ASSERT_VECTORS_SIZE_EQUAL(f, y, NULL);
    2260     PS_ASSERT_VECTOR_TYPE(x, PS_TYPE_F32, NULL);
     2379    PS_ASSERT_VECTOR_TYPE_F32_OR_F64(x, NULL);
    22612380    PS_ASSERT_VECTOR_NON_NULL(y, NULL);
    22622381    PS_ASSERT_VECTORS_SIZE_EQUAL(f, y, NULL);
    2263     PS_ASSERT_VECTOR_TYPE(y, PS_TYPE_F32, NULL);
     2382    PS_ASSERT_VECTOR_TYPE_F32_OR_F64(y, NULL);
    22642383    if (fErr != NULL) {
    22652384        PS_ASSERT_VECTORS_SIZE_EQUAL(f, fErr, NULL);
    2266         PS_ASSERT_VECTOR_TYPE(fErr, PS_TYPE_F32, NULL);
    2267     }
    2268 
    2269     if (mask == NULL) {
    2270         // XXX: Change argument order.
    2271         poly = RobustFit2D_nomask(poly, x, y, f, fErr);
     2385        PS_ASSERT_VECTOR_TYPE_F32_OR_F64(fErr, NULL);
     2386    }
     2387
     2388    // clipping range defined by min and max and/or clipSigma
     2389    float minClipSigma;
     2390    float maxClipSigma;
     2391    if (isfinite(stats->max)) {
     2392        maxClipSigma = fabs(stats->max);
    22722393    } else {
    2273         // XXX: Use maskValue.
    2274         // XXX: Change argument order.
    2275         poly = RobustFit2D(poly, mask, x, y, f, fErr);
    2276     }
     2394        maxClipSigma = fabs(stats->clipSigma);
     2395    }
     2396    if (isfinite(stats->min)) {
     2397        minClipSigma = fabs(stats->min);
     2398    } else {
     2399        minClipSigma = fabs(stats->clipSigma);
     2400    }
     2401    psVector *fit   = NULL;
     2402    psVector *resid = psVectorAlloc (x->n, PS_TYPE_F64);
     2403
     2404    // eventual expansion: user supplies one of various stats option pairs,
     2405    // eg (SAMPLE_MEAN | SAMPLE_STDEV) and the correct pair is used to
     2406    // evaluate the clipping sigma
     2407    // for now, for the SAMPLE_MEDIAN and SAMPLE_STDEV to be used
     2408    stats->options |= (PS_STAT_SAMPLE_MEDIAN | PS_STAT_SAMPLE_STDEV);
     2409
     2410    for (int N = 0; N < stats->clipIter; N++) {
     2411        int Nkeep = 0;
     2412
     2413        poly = psVectorFitPolynomial2D (poly, mask, maskValue, f, fErr, x, y);
     2414        fit = psPolynomial2DEvalVector (poly, x, y);
     2415        resid = (psVector *) psBinaryOp (resid, (void *) f, "-", (void *) fit);
     2416
     2417        stats  = psVectorStats (stats, resid, NULL, mask, maskValue);
     2418        float minClipValue = -minClipSigma*stats->sampleStdev;
     2419        float maxClipValue = +maxClipSigma*stats->sampleStdev;
     2420
     2421        // set mask if pts are not valid
     2422        // we are masking out any point which is out of range
     2423        // recovery is not allowed with this scheme
     2424        for (int i = 0; i < resid->n; i++) {
     2425            if ((mask != NULL) && (mask->data.U8[i] & maskValue)) {
     2426                continue;
     2427            }
     2428            if (resid->data.F64[i] - stats->sampleMedian > maxClipValue) {
     2429                if (mask != NULL) {
     2430                    mask->data.U8[i] |= 0x01;
     2431                }
     2432                continue;
     2433            }
     2434            if (resid->data.F64[i] - stats->sampleMedian < minClipValue) {
     2435                if (mask != NULL) {
     2436                    mask->data.U8[i] |= 0x01;
     2437                }
     2438                continue;
     2439            }
     2440            Nkeep ++;
     2441        }
     2442
     2443        psTrace (".psphot.VectorClipFit", 4, "keeping %d of %d pts for fit\n",
     2444                 Nkeep, x->n);
     2445
     2446        psFree (fit);
     2447    }
     2448    // Free local temporary variables
     2449    psFree (resid);
    22772450
    22782451    if (poly == NULL) {
  • trunk/psLib/src/math/psPolynomial.c

    r5576 r5624  
    77*  polynomials.  It also contains a Gaussian functions.
    88*
    9 *  @version $Revision: 1.132 $ $Name: not supported by cvs2svn $
    10 *  @date $Date: 2005-11-22 21:40:40 $
     9*  @version $Revision: 1.133 $ $Name: not supported by cvs2svn $
     10*  @date $Date: 2005-11-30 02:00:09 $
    1111*
    1212*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    725725}
    726726
    727 psPolynomial4D* psPolynomial4DAlloc(
    728     unsigned int nX,
    729     unsigned int nY,
    730     unsigned int nZ,
    731     unsigned int nT,
    732     psPolynomialType type)
     727psPolynomial4D* psPolynomial4DAlloc( unsigned int nX,
     728                                     unsigned int nY,
     729                                     unsigned int nZ,
     730                                     unsigned int nT,
     731                                     psPolynomialType type)
    733732{
    734733    PS_ASSERT_INT_NONNEGATIVE(nX, NULL);
     
    785784}
    786785
    787 
    788 
    789 
    790 
    791 
    792 
    793 
    794 
    795 
    796 
    797 
    798 
    799 
    800 
    801 
    802 
    803 
    804 
    805 
    806 
    807 
    808 
    809786psF64 psPolynomial1DEval(const psPolynomial1D* poly,
    810787                         psF64 x)
     
    824801}
    825802
     803// this function must accept F32 and F64 input x vectors
    826804psVector *psPolynomial1DEvalVector(const psPolynomial1D *poly,
    827805                                   const psVector *x)
     
    829807    PS_ASSERT_POLY_NON_NULL(poly, NULL);
    830808    PS_ASSERT_VECTOR_NON_NULL(x, NULL);
    831     PS_ASSERT_VECTOR_TYPE(x, PS_TYPE_F64, NULL);
     809    PS_ASSERT_VECTOR_TYPE_F32_OR_F64(x, NULL);
    832810
    833811    psVector *tmp;
    834812
    835     tmp = psVectorAlloc(x->n, PS_TYPE_F64);
    836     for (unsigned int i=0;i<x->n;i++) {
    837         tmp->data.F64[i] = psPolynomial1DEval(poly, x->data.F64[i]);
    838     }
    839 
     813    switch (x->type.type) {
     814    case PS_TYPE_F64:
     815        tmp = psVectorAlloc(x->n, PS_TYPE_F64);
     816        for (unsigned int i=0;i<x->n;i++) {
     817            tmp->data.F64[i] = psPolynomial1DEval(poly, x->data.F64[i]);
     818        }
     819        break;
     820    case PS_TYPE_F32:
     821        tmp = psVectorAlloc(x->n, PS_TYPE_F32);
     822        for (unsigned int i=0;i<x->n;i++) {
     823            tmp->data.F32[i] = psPolynomial1DEval(poly, x->data.F32[i]);
     824        }
     825        break;
     826    default:
     827        psError(PS_ERR_UNKNOWN, false, "invalid input data type.\n");
     828        return (NULL);
     829    }
    840830    return(tmp);
    841831}
     
    859849}
    860850
     851// this function must support input data types of F32 and F64
     852// all input vectors data types must match (all F32 or all F64)
    861853psVector *psPolynomial2DEvalVector(const psPolynomial2D *poly,
    862854                                   const psVector *x,
     
    866858    PS_ASSERT_POLY_NON_NULL(poly, NULL);
    867859    PS_ASSERT_VECTOR_NON_NULL(x, NULL);
    868     PS_ASSERT_VECTOR_TYPE(x, PS_TYPE_F64, NULL);
     860    PS_ASSERT_VECTOR_TYPE_F32_OR_F64(x, NULL);
    869861    PS_ASSERT_VECTOR_NON_NULL(y, NULL);
    870     PS_ASSERT_VECTOR_TYPE(y, PS_TYPE_F64, NULL);
     862    PS_ASSERT_VECTOR_TYPE_F32_OR_F64(y, NULL);
    871863
    872864    psVector *tmp;
     
    878870    }
    879871
    880     // Create output vector to return
    881     tmp = psVectorAlloc(vecLen, PS_TYPE_F64);
    882 
    883     // Evaluate the polynomial at the specified points
    884     for (unsigned int i=0; i<vecLen; i++) {
    885         tmp->data.F64[i] = psPolynomial2DEval(poly,x->data.F64[i],y->data.F64[i]);
    886     }
    887 
     872    switch (x->type.type) {
     873    case PS_TYPE_F32:
     874        if (y->type.type != x->type.type) {
     875            psError(PS_ERR_UNKNOWN, true, "type mismatch in data vectors");
     876            return (NULL);
     877        }
     878
     879        // Create output vector to return
     880        tmp = psVectorAlloc(vecLen, PS_TYPE_F32);
     881
     882        // Evaluate the polynomial at the specified points
     883        for (unsigned int i=0; i<vecLen; i++) {
     884            tmp->data.F32[i] = psPolynomial2DEval(poly,x->data.F32[i],y->data.F32[i]);
     885        }
     886        break;
     887    case PS_TYPE_F64:
     888        if (y->type.type != x->type.type) {
     889            psError(PS_ERR_UNKNOWN, true, "type mismatch in data vectors");
     890            return (NULL);
     891        }
     892
     893        // Create output vector to return
     894        tmp = psVectorAlloc(vecLen, PS_TYPE_F64);
     895
     896        // Evaluate the polynomial at the specified points
     897        for (unsigned int i=0; i<vecLen; i++) {
     898            tmp->data.F64[i] = psPolynomial2DEval(poly,x->data.F64[i],y->data.F64[i]);
     899        }
     900        break;
     901    default:
     902        psError(PS_ERR_UNKNOWN, false, "invalid input data type.\n");
     903        return (NULL);
     904    }
    888905    // Return output vector
    889906    return(tmp);
  • trunk/psLib/src/math/psStats.c

    r5576 r5624  
    77 *  on those data structures.
    88 *
    9 *  @author GLG, MHPCC
    10 *
    11 *  XXX: The following stats members are never used, or set in this code.
    12 *      stats->robustN50
    13 *      stats->clippedNvalues
    14 *      stats->binsize
    15 *
    16 *
    17 *
    18 *
    19 *  @version $Revision: 1.154 $ $Name: not supported by cvs2svn $
    20 *  @date $Date: 2005-11-22 21:40:40 $
    21 *
    22 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
    23 */
     9 *  @author GLG, MHPCC
     10 *
     11 *  XXX: The following stats members are never used, or set in this code.
     12 *      stats->robustN50
     13 *      stats->clippedNvalues
     14 *      stats->binsize
     15 *
     16 *
     17 *
     18 *
     19 *  @version $Revision: 1.155 $ $Name: not supported by cvs2svn $
     20 *  @date $Date: 2005-11-30 02:00:09 $
     21 *
     22 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     23 */
    2424
    2525#include <stdlib.h>
     
    11311131        statsTmp = psStatsAlloc(PS_STAT_SAMPLE_MEAN);
    11321132        p_psMemSetPersistent(statsTmp, true);
     1133    } else {
     1134        // XXX EAM : initialize structure if already allocated
     1135        statsTmp->sampleMean = NAN;
     1136        statsTmp->sampleMedian = NAN;
     1137        statsTmp->sampleStdev = NAN;
     1138        statsTmp->sampleUQ = NAN;
     1139        statsTmp->sampleLQ = NAN;
     1140        statsTmp->robustMean = NAN;
     1141        statsTmp->robustMedian = NAN;
     1142        statsTmp->robustMode = NAN;
     1143        statsTmp->robustStdev = NAN;
     1144        statsTmp->robustUQ = NAN;
     1145        statsTmp->robustLQ = NAN;
     1146        statsTmp->robustN50 = -1;            // XXX: This is never used
     1147        statsTmp->robustNfit = -1;
     1148        statsTmp->clippedMean = NAN;
     1149        statsTmp->clippedStdev = NAN;
     1150        statsTmp->clippedNvalues = -1;     // XXX: This is never used
     1151        statsTmp->clipSigma = 3.0;
     1152        statsTmp->clipIter = 3;
     1153        statsTmp->min = NAN;
     1154        statsTmp->max = NAN;
     1155        statsTmp->binsize = NAN;          // XXX: This is never used
    11331156    }
    11341157
Note: See TracChangeset for help on using the changeset viewer.