Hello, "Jason R. Green" <jg...@cam.ac.uk> writes:
> [...] >> Though it isn't much, I'd be happy to share what I have so far. >> >> I have gsl_matrix and gsl_vector smobs, their make, mark, free, and >> print functions, as well as wrapper functions that zero each. I also >> have functions for converting between GSL and SCM vectors.. > [...] > > I've made this available via github: http://github.com/jrgreen/guile-gsl Note that if you’re targeting Guile 1.9/2.0, you don’t need SMOB mark functions here (info "(guile) Smobs") and you don’t need explicit ‘scm_gc_free ()’ calls (info "(guile) Memory Blocks"). Thanks, Ludo’.