Skip to content
Prev 4526 / 15075 Next

Directing output to R.app GUI from compiled C code

If all you need to do is print a GSL vector, why not just do something  
simple like the following:

for(i = 0; i < n; i++)
     Rprintf("%.3f ", gsl_vector_get(X, i));
}

That is strange that gsl_vector_fprintf is not working, so an  
explanation as to why would still be interesting.

Ryan
On Mar 29, 2008, at 6:03 PM, Michael Braun wrote: