home *** CD-ROM | disk | FTP | other *** search
- /* General form test program for scientific functions */
-
- /* Routine Tested: STGAMA */
-
- main()
-
- {
- float x,df,cf;
- int *fp,m;
-
- *fp=fopen("PRN:","w"); /* open the printer */
- fprintf(*fp,"Test Results from STGAMA\n\n");
- printf("Test Results from STGAMA\n\n");
-
- m = 3;
- x = .05;
-
- stgama(m,x,&df,&cf);
-
- fprintf(*fp,"DF = %15.7f CF = %15.7f\n",df,cf);
- printf("DF = %15.7f CF = %15.7f\n",df,cf);
-
- }