home *** CD-ROM | disk | FTP | other *** search
- /* General form test program for scientific functions */
-
- /* Routine Tested: STSPER */
-
- main()
-
- {
-
- static float a[5] = {480., 500., 520., 540., 56.},
- b[5] = { 56., 61., 78., 71., 82.};
- float r;
- int *fp,n;
-
- *fp=fopen("PRN:","w"); /* open the printer */
- fprintf(*fp,"Test Results from STSPER\n\n");
- printf("Test Results from STSPER\n\n");
-
- n = 5;
-
- STSPER(n,a,b,&r);
-
- fprintf(*fp,"R = %15.7f\n\n",r);
- printf("R = %15.7f\n\n",r);
- }