Changeset 10848 for trunk/psLib/test/math/tap_psStats07.c
- Timestamp:
- Dec 28, 2006, 6:38:42 PM (19 years ago)
- Location:
- trunk/psLib/test/math
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
tap_psStats07.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/math
- Property svn:ignore
-
old new 4 4 Makefile 5 5 Makefile.in 6 tst_psFunc017 tst_psHist008 tst_psHist019 tst_psHist0210 tst_psHist0311 tst_psMatrix0112 tst_psMatrix0213 tst_psMatrix0314 tst_psMatrix0415 tst_psMatrix0516 tst_psMatrix0617 tst_psMatrix0718 tst_psMatrixVectorArithmetic0119 tst_psMatrixVectorArithmetic0220 tst_psMatrixVectorArithmetic0321 tst_psMatrixVectorArithmetic0422 tst_psRandom23 tst_psStats0024 tst_psStats0125 tst_psStats0226 tst_psStats0327 tst_psStats0528 tst_psStats0629 tst_psStats0730 tst_psStats0831 tst_psStats0932 6 seed_msglog1.txt 33 7 seed_msglog2.txt 34 tst_psSpline1D35 tst_psMathUtils36 tst_psMinimizeLMM37 tst_psMinimizePowell38 tst_psPolyFit1D39 tst_psPolyFit2D40 tst_psPolyFit3D41 tst_psPolyFit4D42 tst_psPolynomial43 tst_psPolynomialEval1D44 tst_psPolynomialEval2D45 tst_psPolynomialEval3D46 tst_psPolynomialEval4D47 8 *.bb 48 9 *.bbg 49 10 *.da 50 11 gmon.out 12 tap_psHist00 13 tap_psHist01 14 tap_psHist02 15 tap_psHist03 16 tap_psMD5 17 tap_psMatrix01 18 tap_psMatrix02 19 tap_psMatrix03 20 tap_psMatrix04 21 tap_psMatrix05 22 tap_psMatrix06 23 tap_psMatrix07 24 tap_psPolyFit1D 25 tap_psPolyFit2D 26 tap_psPolyFit3D 27 tap_psPolyFit4D 28 tap_psPolynomial 29 tap_psPolynomialEval1D 30 tap_psPolynomialEval2D 31 tap_psPolynomialEval3D 32 tap_psPolynomialEval4D 33 tap_psPolynomialUtils_Derivatives 51 34 tap_psSparse 35 tap_psStats00 36 tap_psStats01 37 tap_psStats02 38 tap_psStats03 39 tap_psStats05 40 tap_psStats06 41 tap_psStats07 42 tap_psStats08 43 tap_psStats09 52 44 tap_psStatsTiming 53 tap_psMD554 45 tap_psStats_Sample_01 55 tap_psPolynomialUtils_Derivatives
-
- Property svn:ignore
-
trunk/psLib/test/math/tap_psStats07.c
r10831 r10848 314 314 if (expectedRC == true) { 315 315 psStats *myStats = psStatsAlloc(PS_STAT_SAMPLE_MEAN | PS_STAT_SAMPLE_STDEV | PS_STAT_SAMPLE_MEDIAN | PS_STAT_SAMPLE_QUARTILE); 316 psStats *rc = psVectorStats(myStats, in, NULL, NULL, maskValue);317 if (rc == NULL) {316 bool rc = psVectorStats(myStats, in, NULL, NULL, maskValue); 317 if (rc == false) { 318 318 diag("TEST ERROR: the psVectorStats() function returned NULL.\n"); 319 319 testStatus = false; … … 406 406 PS_STAT_FITTED_MEAN | 407 407 PS_STAT_FITTED_STDEV); 408 psStats *rc = psVectorStats(myStats, in, errors, mask, maskValue);409 410 if (rc == NULL) {408 bool rc = psVectorStats(myStats, in, errors, mask, maskValue); 409 410 if (rc == false) { 411 411 if (expectedRC == true) { 412 412 diag("TEST ERROR: the psVectorStats() function returned NULL.\n");
Note:
See TracChangeset
for help on using the changeset viewer.
