Changeset 2436 for trunk/psLib/test/dataManip/tst_psFunc01.c
- Timestamp:
- Nov 24, 2004, 12:14:39 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/test/dataManip/tst_psFunc01.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/dataManip/tst_psFunc01.c
r2392 r2436 3 3 specified Gaussian at some X. 4 4 5 It also tests the p sGaussianDev() procedure.5 It also tests the p_psGaussianDev() procedure. 6 6 *****************************************************************************/ 7 7 #include <stdio.h> … … 49 49 printPositiveTestHeader(stdout, 50 50 "psFunctions functions", 51 "p sGaussianDev()");51 "p_psGaussianDev()"); 52 52 53 myGaussData = p sGaussianDev(MY_MEAN, MY_STDEV, N);53 myGaussData = p_psGaussianDev(MY_MEAN, MY_STDEV, N); 54 54 for (psS32 i = 0; i < N ; i++) { 55 55 printf("Gaussian Deviate [%d] is %f\n", i, myGaussData->data.F32[i]); … … 57 57 58 58 if ( myGaussData->type.type != PS_TYPE_F32) { 59 psAbort(__func__,"p sGaussianDev did not return a vector of type F32");59 psAbort(__func__,"p_psGaussianDev did not return a vector of type F32"); 60 60 } 61 61 … … 70 70 printFooter(stdout, 71 71 "psFunctions functions", 72 "p sGaussianDev()",72 "p_psGaussianDev()", 73 73 testStatus); 74 74
Note:
See TracChangeset
for help on using the changeset viewer.
