Hi Mouli,
GSL uses macros (which include function names) to treat different types.
This is why you couldn't find a match with grep: the full function names
are created by C the pre-processor.
Within the 'vector' directory, `minmax.c' defines the macros and the
actual function you are looking for is defined in `minmax_source.c'.
Cheers,
Mohammad
On 12/08/2017 04:07 AM, G Chandramouli wrote:
Hello all,
This is the first time I am using GSL. I downloaded latest
version gsl-2.4 from my nearest mirror
http://infinity.kmeacollege.ac.in/gnu/gsl/. I installed it and successfully
ran a simple program. However I want to check the source code of functions
declared inside gsl_vector_double.h (inside vector directory) for e.g.
functions like gsl_vector_min etc. I tried a lot to find using grep etc,
but couldn't find it anywhere. Can you please guide me where to find source
code for these functions.
Thanks,
Mouli