38 lines
765 B
C
38 lines
765 B
C
|
|
/* Driver for routine bessj */
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#define NRANSI
|
|
#include "nr.h"
|
|
#include "nrutil.h"
|
|
|
|
#define MAXSTR 80
|
|
|
|
int main(void)
|
|
{
|
|
char txt[MAXSTR];
|
|
int i,nval,n;
|
|
float val,x;
|
|
FILE *fp;
|
|
|
|
if ((fp = fopen("fncval.dat","r")) == NULL)
|
|
nrerror("Data file fncval.dat not found\n");
|
|
fgets(txt,MAXSTR,fp);
|
|
while (strncmp(txt,"Bessel Function Jn",18)) {
|
|
fgets(txt,MAXSTR,fp);
|
|
if (feof(fp)) nrerror("Data not found in fncval.dat\n");
|
|
}
|
|
fscanf(fp,"%d %*s",&nval);
|
|
printf("\n%s\n",txt);
|
|
printf("%4s %7s %15s %20s \n","n","x","actual","bessj(n,x)");
|
|
for (i=1;i<=nval;i++) {
|
|
fscanf(fp,"%d %f %f",&n,&x,&val);
|
|
printf("%4d %8.2f %18.6e %18.6e\n",n,x,val,bessj(n,x));
|
|
}
|
|
fclose(fp);
|
|
return 0;
|
|
}
|
|
#undef NRANSI
|