41 lines
828 B
C
41 lines
828 B
C
|
|
/* Driver for routine cisi */
|
|
|
|
#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;
|
|
float ci,si,x,xci,xsi;
|
|
FILE *fp;
|
|
|
|
if ((fp = fopen("fncval.dat","r")) == NULL)
|
|
nrerror("Data file fncval.dat not found\n");
|
|
fgets(txt,MAXSTR,fp);
|
|
while (strncmp(txt,"Cosine and Sine Integrals",25)) {
|
|
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("%5s %12s %12s %12s %12s \n",
|
|
"x","actual","ci(x)","actual","si(x)");
|
|
for (i=1;i<=nval;i++) {
|
|
fscanf(fp,"%f %f %f",&x,&xci,&xsi);
|
|
cisi(x,&ci,&si);
|
|
printf("%6.2f %12.6f %12.6f %12.6f %12.6f\n",
|
|
x,xci,ci,xsi,si);
|
|
}
|
|
fclose(fp);
|
|
return 0;
|
|
}
|
|
#undef NRANSI
|