I am running Microsoft Visual Studio 7.1. I am trying to run the following
sample code:

#include <stdio.h>
#include <gsl/gsl_sf_bessel.h>

int main (void)
{
        double x = 5.0;
        double y = gsl_sf_bessel_J0 (x);
        printf ("J0(%g) = %.18e\n", x, y);
        return 0;
}

But I get the error:

source.obj : error LNK2019: unresolved external symbol _gsl_sf_bessel_J0
referenced in function _main

Can anybody help me?

-Tim Chan
[EMAIL PROTECTED]




_______________________________________________
Help-gsl mailing list
Help-gsl@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gsl

Reply via email to