home *** CD-ROM | disk | FTP | other *** search
- /* General form test program for scientific functions */
-
- /* Routine Tested: STCHIS */
-
- main()
-
- {
- float chi2,r[3];
- int llc,m,n,idf;
-
- static float x[3][2]={15.,21.,
- 76.,51.,
- 21., 9.};
-
- printf("Test Results from STCHIS\n\n");
-
- llc = 2;
- m = 3;
- n = 2;
-
- stchis(llc,m,n,x,&chi2,&idf,r);
-
- printf("CHI2 = %15.7f IDF = %4d\n",chi2,idf);
- }