Displaying 1 result from an estimated 1 matches for "tellig".
Did you mean:
telling
2004 Feb 01
4
I can't make .C(...) web-page example.
Hi everyone!
I'm trying to lear how to call external C code in R but even the R help
web-page example is drive me crazy.
I copy-paste the example at:
http://stat.ethz.ch/R-manual/R-patched/doc/manual/R-exts.html#Interface%20functions%20.C%20and%20.Fortran
here is the example:
void convolve(double *a, int *na, double *b, int *nb, double *ab)
{
int i, j, nab = *na + *nb - 1;
for(i = 0;