home *** CD-ROM | disk | FTP | other *** search
- /* General form test program for scientific functions */
-
- /* Routine Tested: STBETA */
-
- main()
-
- {
- int *fp,m,n;
- float h,s,x;
-
- x = 0.7;
- m = 8;
- n = 5;
-
- stbeta(n,m,x,&h,&s);
-
- *fp=fopen("PRN:","w"); /* open the printer */
-
- fprintf(*fp,"Test Results from STBETA\n");
- printf("Test Results from STBETA\n\n");
-
- fprintf(*fp,"%15.10f %15.10f\n",h,s);
- printf( "%15.10f %15.10f\n",h,s);
- }
-