Files
2025-02-Numerical/lib/nr/ansi/examples/xscrsho.c
2025-09-12 18:55:25 +09:00

19 lines
191 B
C

/* Driver for routine scrsho */
#include <stdio.h>
#define NRANSI
#include "nr.h"
static float fx(float x)
{
return bessj0(x);
}
int main(void)
{
scrsho(fx);
return 0;
}
#undef NRANSI