I am trying to understand the piece of code written in C and not sure I understand it fully.

Here is the function written in C:

int
gsl_multimin_diff (const gsl_multimin_function * f,
                   const gsl_vector * x, gsl_vector * g)
{
  size_t i, n = f->n;

  double h = GSL_SQRT_DBL_EPSILON;


  gsl_vector * x1 = gsl_vector_alloc (n);  /* FIXME: pass as argument */

  gsl_vector_memcpy (x1, x);

  for (i = 0; i < n; i++)
    {
      double fl, fh;

      double xi = gsl_vector_get (x, i);
      double dx = fabs(xi) * h;

      if (dx == 0.0) dx = h;    

     (x1, i, xi + dx);
      fh = GSL_MULTIMIN_FN_EVAL(f, x1);

      gsl_vector_set (x1, i, xi - dx);
      fl = GSL_MULTIMIN_FN_EVAL(f, x1);

      gsl_vector_set (x1, i, xi);
      gsl_vector_set (g, i, (fh - fl) / (2.0 * dx));
    }

  gsl_vector_free (x1);

  return GSL_SUCCESS;
}

There is a line 14 in this code, which has this: (x1, i, xi + dx) What does it do? For referenc: x1 is the pointer to the function that allocates memory for a newly created vector. i - loop iterator xi - returning an element from the vector at position i dx is just a value. Thanks for your help!

link|improve this question
2  
Are you sure there's no gsl_vector_set missing just in front of it? – littleadv Sep 27 '11 at 0:38
Yes, looks like the gsl_vector_set was deleted by error. – ott-- Sep 27 '11 at 0:40
Well, this is from the gsl source. Unless I deleted it by accident some time ago. – user966040 Sep 27 '11 at 0:47
feedback

closed as too localized by Jeff Mercado, littleadv, David Nehme, Brad Larson, Graviton Sep 28 '11 at 3:26

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

1 Answer

up vote 0 down vote accepted

It looks like there's something missing there. It should be function arguments. Otherwise it's a no-op - (x1, i, xi + dx) is a valid expression in C, but one that doesn't do anything. It just mentions x1, then mentions i, then mentions the sum of xi and dx.

link|improve this answer
I think you are right, thank you – user966040 Sep 27 '11 at 0:49
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.