home *** CD-ROM | disk | FTP | other *** search
- /* General form test program for scientific functions */
-
- /* Routine Tested: STHYGD */
-
- main()
-
- {
- int *fp,k,n,id,iix;
- double cf,df;
-
- k = 50;;
- n = 5;
- id = 5;
- iix = 0;
-
- sthygd(k,n,id,iix,&df,&cf);
-
- *fp=fopen("PRN:","w"); /* open the printer */
-
- fprintf(*fp,"Test Results from STHYGD\n");
- printf("Test Results from STHYGD\n\n");
-
- fprintf(*fp,"%15.10f %15.10f\n",df,cf);
- printf( "%15.10f %15.10f\n",df,cf);
- }
-