home *** CD-ROM | disk | FTP | other *** search
- # include <stdio.h>
- # include "miscio.h"
- # include <string.h>
- # include <math.h>
- # include "specfunc.h"
-
- int i;
- int option;
- int InputNum;
- int errflag;
- float x;
- float y;
- float z;
- float w;
- float CalcAns;
- char done;
-
-
-
- void DisplayOptions()
- {
-
- ClrScr();
- GotoXY(20,1);
- printf( "Special Functions Demo Programs");
- GotoXY(5,3);
- printf( "1. Log Gamma");
- GotoXY(5,4);
- printf( "2. Gamma");
- GotoXY(5,5);
- printf( "3. Incomplete Gamma");
- GotoXY(5,6);
- printf( "4. Incomplete Gamma Complement");
- GotoXY(5,7);
- printf( "5. Bessel");
- GotoXY(5,8);
- printf( "6. Tangent");
- GotoXY(5,9);
- printf( "7. Hyperbolic Cosine");
- GotoXY(5,10);
- printf( "8. Hyperbolic Sine");
- GotoXY(5,11);
- printf( "9. Hyperbolic Secant");
- GotoXY(5,12);
- printf( "10. Hyperbolic ArcTangent");
- GotoXY(5,13);
- printf( "11. Error Function (Iterative)");
- GotoXY(5,14);
- printf( "12. Error Function");
- GotoXY(37,3);
- printf( "13. Complement Error Function");
- GotoXY(37,4);
- printf( "14. Error Function (Real)");
- GotoXY(37,5);
- printf( "15. Error Function (Imaginary)");
- GotoXY(37,6);
- printf("16. Hermite Polynomial ");
- GotoXY(37,7);
- printf( "17. Legendre Polynomial ");
- GotoXY(37,8);
- printf( "18. LaGuerre Polynomial");
- GotoXY(37,9);
- printf( "19. Modified Bessel of I ");
- GotoXY(37,10);
- printf( "20. Modified Bessel of K ");
- GotoXY(37,11);
- printf( "21. Jacobi Polynomial ");
- GotoXY(37,12);
- printf( "22. Tchebyshev Polynomial ");
- GotoXY(37,13);
- printf( "23. Beta ");
- GotoXY(37,14);
- printf( "24. Incomplete Beta ");
- GotoXY(37,15);
- printf( "25. END");
- GotoXY(1,25);
- printf( "Refer to Chapter 17 of Manual for details concerning function arguments");
- }
-
- void AskForOption(int *option)
- {
- char done;
-
- do {
- GotoXY(1,17);
- ClrEol();
- GotoXY(5,17);
- ClrEol();
- printf("ENTER SELECTION: ");
- scanf("%d", option);
- } while ( ! (*option >= 1) && (*option <= 25) );
- }
-
- void NumOfInputs(int option,int *InputNum)
- {
-
- switch ( option ) {
- case 1:
- case 2:
- case 6:
- case 7:
- case 8:
- case 9:
- case 10:
- case 11:
- case 12:
- case 13:
- (*InputNum) = 1;
- break;
- case 3:
- case 4:
- case 5:
- case 14:
- case 15:
- case 16:
- case 17:
- case 19:
- case 20:
- case 22:
- case 23:
- (*InputNum) = 2;
- break;
- case 18:
- case 24:
- (*InputNum) = 3;
- break;
- case 21:
- (*InputNum) = 4;
- break;
- }
- }
-
- void ReadReals(int InputNum,float *x,float *y,float *z,float *w)
- {
-
- GotoXY(1,24);
- printf( "Enter arguments in the order they appear in manual. ");
- GotoXY(5,18);
- printf( "ENTER VALUES FOR :");
- GotoXY(1,20);
- ClrEol();
- printf( "Parameter 1: ");
- scanf("%f", x);
- if ( InputNum > 1 ) {
- GotoXY(20,20);
- printf( "Parameter 2: ");
- scanf( "%f",y);
- if ( InputNum > 2 ) {
- GotoXY(40,20);
- printf( "Parameter 3: ");
- scanf("%f", z);
- if ( InputNum == 4 ) {
- GotoXY(60,20);
- printf( "Parameter 4: ");
- scanf("%f", w);
- }
- }
- }
- }
-
- void CalculateAnswer(int option,float x,float y,float z,float w,int *errflag)
- {
- int Int1 = 21;
- int Int2;
-
- CalcAns = 0;
- (*errflag) = 0;
- switch ( option ) {
- case 1:
- CalcAns = LogGamma(x);
- break;
- case 2:
- CalcAns = Gamma(x,errflag);
- break;
- case 3:
- CalcAns = IncGamma(x,y);
- break;
- case 4:
- CalcAns = IncGammaComp(x,y);
- break;
- case 5:
- CalcAns = Bessel(x,y,errflag);
- break;
- case 6:
- CalcAns = Tan(x);
- break;
- case 7:
- CalcAns = Cosh(x);
- break;
- case 8:
- CalcAns = Sinh(x);
- break;
- case 9:
- CalcAns = Sech(x);
- break;
- case 10:
- CalcAns = ArcTanh(x);
- break;
- case 11:
- CalcAns = ErrFuncIter(x);
- break;
- case 12:
- CalcAns = ErrFunc(x,errflag);
- break;
- case 13:
- CalcAns = ErrFuncComp(x,errflag);
- break;
- case 14:
- CalcAns = ErrFuncR(x,y,errflag);
- break;
- case 15:
- CalcAns = ErrFuncI(x,y);
- break;
- case 16:
- {
- Int1 = floor(x);
- CalcAns = Hermite(Int1,y,errflag);
- }
- break;
- case 17:
- {
- Int1 = floor(x);
- CalcAns = Legend(Int1,y,errflag);
- }
- break;
- case 18:
- {
- Int1 = floor( x);
- CalcAns = Laguerre(Int1,y,z,errflag);
- }
- break;
- case 19:
- CalcAns = ModBesselI(x,y,errflag);
- break;
- case 20:
- CalcAns = ModBesselK(x,y,errflag);
- break;
- case 21:
- {
- Int1 = floor( x);
- CalcAns = Jacobi(Int1,y,z,w,errflag);
- }
- break;
- case 22:
- {
- Int1 = floor(x);
- CalcAns = Tcheb(Int1,y,errflag);
- }
- break;
- case 23:
- CalcAns = Beta(x,y,errflag);
- break;
- case 24:
- CalcAns = IncBeta(x,y,z);
- break;
- }
- GotoXY(5,22);
- printf("ANSWER: %f", CalcAns);
- printf("\n");
- getch();
- }
-
-
- void main()
- {
- option = -1;
- InputNum = -1;
- x = -1.0;
- y = -1.0;
- z = -1.0;
- w = -1.0;
- DisplayOptions();
- do {
- AskForOption(&option);
- if ( option != 25 ) {
- NumOfInputs(option,&InputNum);
- ReadReals(InputNum,&x,&y,&z,&w);
- CalculateAnswer(option,x,y,z,w,&errflag);
- if ( errflag != 0 ) {
- DisplayErrorMessage(errflag);
- }
- GotoXY(1,24);
- ClrEol();
- printf( "Press Return to Continue ");
- scanf("");
- for ( i = 16; i <= 24; ++i ) {
- GotoXY(1,i);
- ClrEol();
- }
- }
- } while ( ! (option == 25) );
- }