From: Lars Schouw <schouwla@yahoo.com>
To: caml-list@yquem.inria.fr
Subject: using gsl library....
Date: Wed, 18 May 2005 03:04:53 -0700 (PDT) [thread overview]
Message-ID: <20050518100453.1527.qmail@web50305.mail.yahoo.com> (raw)
This is newbii !!!
We are trying to use the ocmlgsl library.
we are trying to call the ugaussian_P function
belonging to Gsl_cdf.
This works:
open Gsl_fun;;
let _ =
Gsl_error.init () ;
Gsl_rng.env_setup ()
let rng = Gsl_rng.make (Gsl_rng.default ())
let sigma = 3.
let _ =
Printf.printf "# gaussian with sigma=%g\n" sigma ;
for i=1 to 10 do
let x = Gsl_randist.gaussian rng 3. in
Printf.printf "%+.7f\n" x
done
This does not compile:
let _ =
Gsl_error.init () ;
Gsl_rng.env_setup ()
let rng = Gsl_rng.make (Gsl_rng.default ())
let sigma = 3.
let _ =
Printf.printf "# gaussian with sigma=%g\n" sigma ;
for i=1 to 10 do
let x = Gsl_cdf.ugaussian_P 3. in
Printf.printf "%+.7f\n" x
done
C:\ocaml\gsl\ocamlgsl-0.4.0\examples>ocamlopt -cclib
gsl.lib -I ..
bigarray.cmxa
..\gsl.cmxa bs.ml
File "bs.ml", line 23, characters 12-31:
Unbound value Gsl_cdf.ugaussian_P
Do you have any ideas what I do wrong?
I am using my own Windows 1.6 build of GSL that I
build yesterday.
Regards
Lars Schouw
BTW. I asked this on the ocaml_beginners mailing list
and they told me this is to Windows specific.
BTW2: From the ocaml_beginner mailing list
It works on Debian if you do
/usr/lib# ln -s libgsl.so.0 libgsl.so
/usr/lib# ln -s libgslcblas.so.0 libgslcblas.so
/usr/lib# ldconfig
> Then I compiled your second example with:
>
> $ ocamlopt -cclib -lgsl -I +gsl gsl.cmxa test.ml -o
test
and ran it with:
> >
> > $ ./test
> > # gaussian with sigma=3
> > +0.9986501
> > +0.9986501
> > +0.9986501
> > +0.9986501
> > +0.9986501
> > +0.9986501
> > +0.9986501
> > +0.9986501
> > +0.9986501
> > +0.9986501
BTW3: If I try this I get an unbound module error
C:\ocaml\gsl\ocamlgsl-0.4.0\examples>ocamlopt -cclib
-lgsl -I +gsl
> gsl.cmxa bs.ml -i bs
> File "bs.ml", line 2, characters 0-12:
> Unbound module Gsl_fun
__________________________________
Yahoo! Mail Mobile
Take Yahoo! Mail with you! Check email on your mobile phone.
http://mobile.yahoo.com/learn/mail
next reply other threads:[~2005-05-18 10:04 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-05-18 10:04 Lars Schouw [this message]
2005-05-18 13:31 ` [Caml-list] " James E. Scott
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20050518100453.1527.qmail@web50305.mail.yahoo.com \
--to=schouwla@yahoo.com \
--cc=caml-list@yquem.inria.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox